• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

WebSphere jsp:forward OR Cross Context

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
reply
    Bookmark Topic Watch Topic
  • New Topic