Error 404 when using Microflow URL

0
Hello, I recently updated my application in Mendix 10.16.0. The application used DeepLinks so I modified it to use Microflow URL. It works fine on localhost but when I deploy the application on our on-premise environement, the url doesn't work and I get a 404 error... here is the url I have: https://myapp.com/p/report_gotoprint?ReportList=RCB216466   Could you help me?    
asked
1 answers
0

To resolve a 404 error, check the following:

- Enable Microflow URL Handler: Ensure EnableMicroflowRequests=true in your on-premises runtime settings.

- Web Server/Proxy Configuration: Verify your reverse proxy (e.g., Nginx, Apache, or IIS) allows /p/ paths with query parameters.

- Verify Microflow Name: Ensure the Microflow URL alias matches your configuration (report_gotoprint).Logs and Debugging: Enable com.mendix.webui logging to see if the request reaches the app server.

answered