I'm migrating an app from weblogic 10.3.6 to weblogic 14.1.1, and the redirect after the j_security_check is not working because the URL does not contain the part protocol/domain/port , only the path + params.
Debugging the weblogic sources, I can tell :
the security check is OK
in the MemorySessionData there are 2 attributes I assume correct :
weblogic.formatauth.targeturl : http://<domain>:<port>/<path>
weblogic.formatauth.targeturi : /<path>
when the redirect happens, the value of attribute storedUrl is only the path, that's why I have the exception Servlet failed with an IOException. java.net.MalformedURLException
Any idea why?