hi
Can you share a project with me? liming.ma@volosoft.com
hi
Can you share a simple project? liming.ma@volosoft.com I will test it on IIS
hi
Can you set the environment to Production and test the app locally instead of IIS?
hi
The logs your shared is not a application-configuration request.
ok, I will share you a sample. is mbuthiagrg@gmail.com ok?
500 Internal server
Do you get new error logs?
hi
https://docs.abp.io/en/abp/latest/Migration-Guides/Index https://docs.abp.io/en/commercial/latest/migration-guides/index
hi
System.Net.Http.HttpRequestException: No such host is known. (api.ubxcloud.net:443)
https://support.abp.io/QA/Questions/3448#answer-5f70c8df-651b-08ba-ec76-3a053289a6f4
But after login it started throwing 500 error.
What's the error detail?
hi
Update to the latest version or add the code below to your project:
services.ConfigureApplicationCookie(options =>
{
options.ForwardDefaultSelector = ctx =>
{
string authorization = ctx.Request.Headers.Authorization;
if (!authorization.IsNullOrWhiteSpace() && authorization.StartsWith("Bearer ", StringComparison.OrdinalIgnoreCase))
{
return "Bearer";
}
return null;
};
});
hi
Have you tried the steps I mentioned above?