Hi
I have two WebSphere applications employerWeb and shoppingWeb.
I am unable to forward the page from employerWeb to shoppingWeb?
I want to forward the page from
http://localhost:9080/employerWeb/dept/redirect.jsp to
http://localhost:9080/shoppingWeb/signOn.do here is my code
String strurl = "../shoppingWeb/signOn.do";
//String strurl = "http://localhost:9080/shoppingWeb/signOn.do";
<
jsp:forward page="<%= strurl %>" />
its giving error
org.apache.struts.action.RequestProcessor processMapping Invalid path /dept/../shoppingWeb/signOn.do
=======================================
Can we do crossContext in WebSphere?.
I want to pass two values to shoppingWeb from employerWeb without using query
string(I want to keep them private). How?.
Thank you