Does WLS 10.2 allow redirection from dynamically included JSPs ?
Hello,
After changing the coding from <%@ file> (static include) to <jsp:include file> (dynamic include) to fix some JVM issues,
the problem now is that it doesn't allow redirects from dynamically included JSP.
See, if you create 3 JSPs:
Include JSP2 in JSP1 [dynamic include using <jsp:include>].
In JSP2, use redirect to JSP3. When you'll hit JSP1 you will not see JSP3.
Is this because it is not possible to refer (include or forward) a JSP of one web application in another web application?
Can a JSP just include another JSP or forward to a resource which is in the same web application context?
After changing the coding from <%@ file> (static include) to <jsp:include file> (dynamic include) to fix some JVM issues,
the problem now is that it doesn't allow redirects from dynamically included JSP.
See, if you create 3 JSPs:
Include JSP2 in JSP1 [dynamic include using <jsp:include>].
In JSP2, use redirect to JSP3. When you'll hit JSP1 you will not see JSP3.
Is this because it is not possible to refer (include or forward) a JSP of one web application in another web application?
Can a JSP just include another JSP or forward to a resource which is in the same web application context?
0