Thanks..But my problem is not fully solved.
From Action1 when I am forwarding to action2 , redirect=true doesnt work.
in action2 , while forwarding it to Action2.Jsp when I say redirect= true
my Browser URL changes to
http://localhost:9080/ApplicationContext/Context2/Action2.jsp However while
jsp rendering , it gives error because in JSP I have written it like
<html:form action="action2.do" >
It shows error saying Cannot retrieve mapping for action /Cannot retrieve mapping for action/action2
in form I have tried following things
action="action2.do"
action="context2/action2.do"
action="/action2.do"
action="../context2/action2.do"
none of them works
in my web.xml for context1 & 2 I am referring same struts-config-<moodulename>.xml
Any comments?
Txs in advance