Opening this one again as it seems to have been answered incorrectly
Have emailed login URL and details to [email protected] as requested by #10596.
Prerequisites Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
What is your product version? 8.8 What is your product type (Angular or MVC)? MVC What is product framework type (.net framework or .net core)? .Net Core 3.1 After atempting logging in the user is directed back to the login page with no error message (or error in audit log)
Please NOTE We have two instances of identical code base. One is deployed to an Azure hosted windows based web app the second to an Azure hosted Windows based web app. The windows based web app logs on normally, the linux based web app **does not ** logon (The login screen shows and the swagger UI seems to function as expected)
NOTE recieved an email saying that an answer had been provided. However cannot see answer.
Further Audit trail information
Id BrowserInfo ClientIpAddress ClientName CustomData Exception ExecutionDuration ExecutionTime ImpersonatorTenantId ImpersonatorUserId MethodName Parameters ServiceName TenantId UserId ReturnValue 105 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.53 ::ffff:172.16.1.1 NULL NULL NULL 145 34:10.7 NULL NULL Login {"loginModel":{"rememberMe":false,"usernameOrEmailAddress":"admin"},"returnUrl":"/Falcon","returnUrlHash":null,"ss":null} Syntaq.Falcon.Web.Controllers.AccountController NULL NULL NULL 106 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 Edg/95.0.1020.53 ::ffff:172.16.1.1 NULL NULL NULL 1 34:11.1 NULL NULL Login {"returnUrl":"/Falcon"} Syntaq.Falcon.Web.Controllers.AccountController NULL NULL NULL
Hi,
Updating this issue again. Have emailed login URL and details to [email protected] as requested above.
FYI. This is hosted on an Azure Linux based Web App (the Windows based Web app runs with no problem)
Thanks
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
After atempting logging in the user is directed back to the login page with no error message (or error in audit log)
Please NOTE We have two instances of identical code base. One is deployed to an Azure hosted windows based web app the second to an Azure hosted Windows based web app. The windows based web app logs on normally, the linux based web app **does not ** logon (The login screen shows and the swagger UI seems to function as expected)
Further information.
We have found that when the ConfigureServices returns the IServiceProvider namley the FalconWebMvcModule our injected controller will not work. If configureservices runs as a void our injected controller works - (but of course the rest of the system will not run).
At the bottom are how the injected controlelr is added. It is a 3rd party spelling and grammar checker (RapidSpell).
` return services.AddAbp
//Configure Log4Net logging
options.IocManager.IocContainer.AddFacility<LoggingFacility>(
f => f.UseAbpLog4Net().WithConfig(_hostingEnvironment.IsDevelopment()
? "log4net.config"
: "log4net.Production.config")
);
options.PlugInSources.AddFolder(Path.Combine(_hostingEnvironment.WebRootPath, "Plugins"), SearchOption.AllDirectories);
});`
services.AddControllers().AddApplicationPart(System.Reflection.Assembly.Load(new System.Reflection.AssemblyName("Keyoti.RapidSpellWeb.ASP.NET.Core")));
We also Map the Razor pages and Controllers in the configure method
app.UseEndpoints(endpoints =>
{
//endpoints.MapHub<AbpCommonHub>("/signalr");
//endpoints.MapHub<ChatHub>("/signalr-chat");
endpoints.MapRazorPages();
endpoints.MapControllers();
//endpoints.MapControllerRoute("defaultWithArea", "{area}/{controller=Home}/{action=Index}/{id?}");
//endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
//if (bool.Parse(_appConfiguration["HealthChecks:HealthChecksEnabled"]))
//{
// endpoints.MapHealthChecks("/health", new HealthCheckOptions()
// {
// Predicate = _ => true,
// ResponseWriter = UIResponseWriter.WriteHealthCheckUIResponse
// });
//}
Any advice on where to go from here?
Cheers
HI,
I have included the Detailed 500 error message from the log
`HTTP Error 500.0 - Internal Server Error The page cannot be displayed because an internal server error has occurred.
Most likely causes: IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred. IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly. IIS was not able to process configuration for the Web site or application. The authenticated user does not have permission to use this DLL. The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
Things you can try: Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account. Check the event logs to see if any additional information was logged. Verify the permissions for the DLL. Install the .NET Extensibility feature if the request is mapped to a managed handler. Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.
Detailed Error Information: Module AspNetCoreModule Notification ExecuteRequestHandler Handler aspNetCore Error Code 0x00000000 Requested URL https://syntaq-falcon-preprod__2475:80/api/RapidSpellAPI/Check Physical Path D:\home\site\wwwroot\api\RapidSpellAPI\Check Logon Method Anonymous Logon User Anonymous
More Information: This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error. View more information »
Microsoft Knowledge Base Articles:`
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
We are trying to inject a 3rd party spelling and grammar controller. We add the controlers and map the controllers as per the vendors instructions. Everything works as expected in a vanilla test project (asp.net core 3.1). But in ASPNETZERO a 500 error eror is thorwn when any api/RapidSpellAPI/... endpoints are requested. Can you provide any guidance on where to look or how to find the root 500 error? Or any general information about the middleware controllers that might be causing this issue?
services.AddControllers().AddApplicationPart(System.Reflection.Assembly.Load(new System.Reflection.AssemblyName("Keyoti.RapidSpellWeb.ASP.NET.Core")));
.........
endpoints.MapRazorPages();
endpoints.MapControllers();
Also. Recommendations when running background jobs on tenant data where the function does not know the timezone? i.e a date time value sent in an email will show the original UTC date without considering the users timezone.