Hi,
We responded to the last email two days ago. Can you try accessing the link provided again.
Hi,
We responded to the last email two days ago. Can you try accessing the link provided again.
Hi,
We responded to the last email two days ago. Can you try accessing the link provided again.
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
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:`
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.