You can also find tickets with the same problem as you below:
https://abp.io/support/questions/7937/POST-PUT-and-DELETE-requests-return-a-Bad-Request-400-error
In a ticket I forwarded to you before, it was stated that the problem may be CRSF. However, since you said that you checked this and that this was not the problem, I did not think about it. But if this is the problem, could you try the following configuration and let me know if it works for you?
Configure<AbpAntiForgeryOptions>(options =>
{
options.TokenCookie.SecurePolicy = CookieSecurePolicy.None;
});
Because you are using HTTP, the XSRF-TOKEN cookie required HTTPS. If you want to use HTTP, you have to set SecurePolicy to CookieSecurePolicy.None:
My teammate who is more experienced than me about ISS will try to help you.
By the way, have you tried disabling the WebDAV feature on Windows Server or Desktop machines?
https://dev.to/devvsamjuel/webdav-put-and-delete-http-verbs-remove-webdav-module-on-iis-3l1g
Any chance you can send me the logs? Let's examine in detail.
Yes, i have tried all this. can you help me over remote desktop?
Unfortunately, we do not have such a service.
In the meantime, a colleague of our team said that this could also be caused by the hosting company. Some hosting companies do not open requests other than GET requests by default. Which hosting company do you use?
Note: Deployment is not a feature directly provided by ABP, but I still tried to help as much as we can.
Hi there,
How to resolve this exception, is there any other detailed document is present to implement RabbitMQ Background Job? Also, do I need to install RabbitMQ in local to run it ?
Based on the error you're encountering, it looks like your application is trying to connect to a RabbitMQ server, but it can't establish a connection. This is expected if you haven't set up a RabbitMQ server yet.
Hello,
Have you checked our document about deployment to ISS? If not, you can access it here.
You can also find tickets with the same problem as you below:
Hello,
You can find a detailed explanation for this topic here.
Hi,
First of all, thank you for your detailed information. It seems that it cannot connect to RabbitMQ. Can you send your project to berkan.sasmaz@volosoft.com so that I can reproduce the problem?
Hi,
ABP now supports this feature by default. See more: https://github.com/abpframework/abp/pull/18592