ok
I will check your project as soon as possible
hi
You can just get value from configuration[ConnectionStrings:Default]
hi
There are some errors in appmicro-appzero-in-appmicro-appzero
Please fix it and try again.
hi
If we cannot reproduce the problem, it is difficult to find the reason.
hi
Please check the connection string again, You can debug the app to see the connection string.
hi
public override void ConfigureServices(ServiceConfigurationContext context)
{
var hostingEnvironment = context.Services.GetHostingEnvironment();
var configuration = context.Services.GetConfiguration();
if (hostingEnvironment.IsDevelopment())
{
context.Services.AddHttpClient("DevClient", client => {
client.Timeout = TimeSpan.FromMinutes(1);
})
.ConfigurePrimaryHttpMessageHandler(() => {
var httpClientHandler = new HttpClientHandler();
httpClientHandler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator;
return httpClientHandler;
});
context.Services.Replace(ServiceDescriptor.Transient<IProxyHttpClientFactory, DevProxyHttpClientFactory>());
}
}
hi
You can take the source code of a module and replace it.
https://support.abp.io/QA/Questions/160/How-to-customize-an-ABP-project
hi
1- Create a new Blazor server solution and add an entity 2- Open the entity view, add item, edit it, delete it 3- Open audit log table
Can you share the project with me? liming.ma@volosoft.com
hi
I have a custom Oidc Login Provider (KeyCloak) and I get this after the login Provider redirect me after successful login:
Try to depend on theAbpAspNetCoreAuthenticationOpenIdConnectModule
If still not working, Please share your code to reproduce the problem.