up vote 0 down vote favorite
share [g+] share [fb]

We are using Struts 2 Dispatcher Result to forward our request to some jsp page.

In struts.xml

<action name="sampleAction"
    		class="com.mycomp.action.sampleAction">

    		<result name="success" type="dispatcher">
    		<param name="location">/jsp/success.jsp</param>
    		</result>
    		<result name="error">/jsp/error.jsp</result>
    		<result name="input">/jsp/input.jsp</result>
</action>

Now we are able to see success.jsp but the request attributes we set are becoming null in

success.jsp

We used dispatcher because we need the same request to be forwarded so that the request attributes we set can be retrieved in success.jsp But it is not happening and we are getting nulls instead.

Is there anything which needs to be taken care?

Thank you Chaitanya

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

If I understand correctly, the issue is that request attributes are null in success.jsp after making two requests. You will need to place the attributes in the session or re-set the attributes in the action prior to forwarding to the success.jsp.

link|improve this answer
I edited the question. Please check now. – Chaitanya Matukumilli Sep 25 '09 at 12:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.