hi
I gave feedback to the microservices team.
hi
This error has nothing to do with the openiddict client info you shared.
Clear the logs first, then share the logs of all applications after reproducing the problem.
liming.ma@volosoft.com
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