hi
Can you share your website URL? liming.ma@volosoft.com I will test it in IE.
i did not publish it outside. How about if i zip the folder (which is located under C:\inetpub\wwwroot) and send to you? Then you put it in your PC under C:\inetpub\wwwroot and you can test it. May be my project is missing any important things
**I already shared it with you. plz check **
Hi,
I tried all these options in MyProjectWebModule.cs, but still cannot help me.
HI
Can you try to set the
Bundling Mode
toBundle
?https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#bundling-mode
Hi, Thanks so much. I am trying. I will come back to you.
I think the browser version is too low.
https://jquery.com/browser-support/ https://getbootstrap.com/docs/5.0/getting-started/browsers-devices/
I tested with my laptop installed with Window 10, and its IE does not work with the application. Abp is not supported with IE?
HTTP 405
See https://mozartec.com/asp-net-core-error-405-methods-not-allowed-for-put-and-delete-requests-when-hosted-on-iis/
Hi,
Thank you so much. After modifying my web.config by following your instruction, i can add/edit/delete by using Google Chrome.
Within Internet Explorer, I still cannot login and cannot do anything. Why is it like that? How to solve it?
Hello sir,
Thanks so much for your reply and support.
I go to my server and i add a new site binding, but i still see the same errors. Please see the attached images. If you find any missing at my side, i appreciate.
Within Internet Explorer, I cannot login and cannot do anything. However, if i use Google Chrome to browse it, I can login and View and Add information. BUT I cannot Delete or Edit. Please see the following error when I am trying to delete:
hi
Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.
Please share the full error info. includes request start and end.
Hello,
On my IIS, i add a trusted SSL certificate, and now there is NO error for the following: *System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch *
=====>>>THE REMAINING ERRORS ARE : 2022-03-18 08:54:37.514 +03:00 [INF] End processing HTTP request after 9.7556ms - 200 2022-03-18 08:54:37.514 +03:00 [INF] Request finished HTTP/1.1 GET https://qoe.myproject.com/health-status - - - 200 - application/json 9.2139ms 2022-03-18 08:54:45.521 +03:00 [INF] Request starting HTTP/2 POST https://qoe.myproject.com/Account/Login application/x-www-form-urlencoded 497 2022-03-18 08:54:45.538 +03:00 [INF] Executing endpoint '/Account/Login' 2022-03-18 08:54:45.539 +03:00 [INF] Route matched with {page = "/Account/Login", action = "", controller = "", area = ""}. Executing page /Account/Login 2022-03-18 08:54:45.539 +03:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2022-03-18 08:54:45.541 +03:00 [INF] Antiforgery token validation failed. The required antiforgery cookie ".AspNetCore.Antiforgery.oLLsTIB8lzc" is not present. Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The required antiforgery cookie ".AspNetCore.Antiforgery.oLLsTIB8lzc" is not present. at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery.ValidateRequestAsync(HttpContext httpContext) at Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.ValidateAntiforgeryTokenAuthorizationFilter.OnAuthorizationAsync(AuthorizationFilterContext context) 2022-03-18 08:54:45.541 +03:00 [INF] Authorization failed for the request at filter 'Microsoft.AspNetCore.Mvc.ViewFeatures.Filters.AutoValidateAntiforgeryTokenAuthorizationFilter'. 2022-03-18 08:54:45.546 +03:00 [INF] Executing StatusCodeResult, setting HTTP status code 400 2022-03-18 08:54:45.546 +03:00 [INF] Executed page /Account/Login in 7.7423ms 2022-03-18 08:54:45.546 +03:00 [INF] Executed endpoint '/Account/Login' 2022-03-18 08:54:45.826 +03:00 [INF] Request finished HTTP/2 POST https://qoe.myproject.com/Account/Login application/x-www-form-urlencoded 497 - 302 - - 305.0401ms 2022-03-18 08:54:45.831 +03:00 [INF] Request starting HTTP/2 GET https://qoe.myproject.com/Error?httpStatusCode=400 - - 2022-03-18 08:54:45.835 +03:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2022-03-18 08:54:45.839 +03:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2022-03-18 08:54:45.868 +03:00 [INF] Executing ViewResult, running view ~/Views/Error/Default.cshtml. 2022-03-18 08:54:45.903 +03:00 [INF] Authorization failed. These requirements were not met: PermissionRequirement: SettingManagement.Emailing 2022-03-18 08:54:45.903 +03:00 [INF] Authorization failed. These requirements were not met: PermissionRequirement: AbpIdentity.SettingManagement 2022-03-18 08:54:45.905 +03:00 [INF] Authorization failed. These requirements were not met: PermissionRequirement: LeptonThemeManagement.Settings 2022-03-18 08:54:45.905 +03:00 [INF] Authorization failed. These requirements were not met: PermissionRequirement: AbpAccount.SettingManagement 2022-03-18 08:54:45.905 +03:00 [INF] Authorization failed. These requirements were not met: PermissionRequirement: CmsKit.SettingManagement
I add this following into my MyProjectWebModule.cs:
private void ConfigureAuthentication(ServiceConfigurationContext context, IConfiguration configuration) { context.Services.AddAuthentication() .AddJwtBearer(options => { options.Authority = configuration["AuthServer:Authority"]; options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]); ; options.Audience = "MyProject";
* options.BackchannelHttpHandler = new HttpClientHandler()
{
ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator
};*
});
}
****** I still get the following error:
Antiforgery token validation failed. The required antiforgery cookie ".AspNetCore.Antiforgery.oLLsTIB8lzc" is not present.
Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The required antiforgery cookie ".AspNetCore.Antiforgery.oLLsTIB8lzc" is not present.
.......
..............
System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.
---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch