It was a dumber mistake which I wont go into ;^>
Its fixed, however I am now trying to redirect and it is not working.  In my action perform() I am doing the following:
 
String query = request.getSession().getId();
String action = "/postsecure_jump.do?sessionid=";
System.out.println(action+query);
return new ActionForward( action+query, true);
 
 
Can someone tell me how to add query strings properly
 
 
 
 
----- Original Message -----
Sent: Thursday, July 05, 2001 3:49 PM
Subject: Re: Action forward to Action losing request objects ??

Is it possible that you are redirecting instead of forwarding?
 

Jonathan wrote:

I am submitting to an Action which when successful places an object in the request and forwards to a second Action, which looks for the item in the request, and forwards yet again to a third Action which gets the item placed in the request object by the previous Action:Action1---->Action2(put in object)---->Action3(getobject) I am loosing the object in the request between Action1 and Action2 for sure.  Anyone know why?

Reply via email to