Mendix 8 - Redirect from request handler

0
Did something change in Modeler 8.x w/ how redirects happen in request handlers? I used to be able to use the following code in 7.x but in 8 it just stays at the url of the request handler being called. // Redirect to home page Core.execute(mSession.createContext(), "System.ShowHomePage");    // Redirect to login page response.setStatus(IMxRuntimeResponse.SEE_OTHER); response.addHeader("location", "index.html");  
asked
1 answers
0

Nothing about this in the release notes: https://docs.mendix.com/releasenotes/studio/8.0-and-above.

V8 is on java 11 where V is on Java8. Maybe that is the reason.

When you place a breakpoint in the handler, does it even get there?

answered