hi
IDX20803: Unable to obtain configuration from: 'https://extranetapp.cinca.porc01:44334/.well-known/openid-configuration'.
The error is very clear. Can you check if https://extranetapp.cinca.porc01:44334/.well-known/openid-configuration is reachable in the container?
hi
You can inject the IOrganizationUnitRepository
or IBasicRepository<OrganizationUnit, Guid>
Using IOrganizationUnitRepository
is the recommended way.
hi
1.
add two DbSet
to IIdentityProDbContext
DbSet<TenantAuthentications> TenantAuthentications { get; }
DbSet<AuthenticationPolicy> AuthenticationPolicy { get; }
2.
AddRepository
in AbpIdentityProEntityFrameworkCoreModule
options.AddRepository<TenantAuthentications, EFCoreTenantAuthenticationsRepository>();
options.AddRepository<AuthenticationPolicy, EFCoreAuthenticationPolicyRepository>();
3.
Rename EFCoreTenantAuthenticatiosRepository
to EFCoreTenantAuthenticationsRepository
4.
Remove IRepository<IdentityUserOrganizationUnit>
from AuthenticationPolicyAppService
Finally, it should be a problem with the operating environment, it's the first time I've encountered such a situation.
Good news.
hi
I have checked the new logs. The problem is still about the session
.
The session
doesn't seem to be stored in the database. It throws an exception.
An error occurred using a transaction.
An exception occurred, but response has already started!
Can you also try to remove the UseUnitOfWork
from OnApplicationInitialization
?
hi
Have you overridden the IdentitySessionManager
?