Real URL in action forward

2004-03-05 Thread Julio Cesar De Salvo
Hi, my question is: I have a form that sends some information to store in the database to a saveOperation.do action class. Then this action forwards to another action getOperations.do to get the list of operations, and this action returns to the jsp for viewing.

Re: Real URL in action forward

2004-03-05 Thread Hubert Rabago
Try redirecting to getOperations.do. A redirect tells the browser to send another request. This way, the browser is aware of what it's viewing, and as a bonus you won't have to couple/chain your saveXXX and getXXX actions. hth, Hubert --- Julio Cesar De Salvo [EMAIL PROTECTED] wrote: Hi, my