jignesh.patel wrote:
Hi, I am having struts2 application,whenever i am doing action redirect i am getting new context instead of old one ?<result name="login" type="redirect">../authentication/login.action</result> or <result name="login" type="redirect-action"> login </result> And context log looks like ... com.opensymphony.xwork2.ActionContext.getContext()
A redirect tells the browser to make a new HTTP request. Since it's a new request, it needs a new context. What are you trying to do?
L. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

