I have an action mapping that looks like:
  <action
        attribute="someForm"
        name="someForm"
        path="/my/path"
        scope="request"
         validate="false"
         parameter="cmd"
        type="someAction">
   <forward
        name="showForm"
        path="myTileDefinition"/>
   </action>

If I click the link to /my/path.do my action class sends out the
showForm then displays myTileDef. Then it executes the same action class
again. The second execution doesn't copy some of the information from
the first execution. My action class is a LookupDispatchAction so on the
second time it errors out because cmd is not defined as a parameter. If
I point my action at a regular jsp page with a tile definition in the
page it does the same thing. If I point the action at a plain old jsp
page it executes once. Why does this execute more then once? how do I
write code around this problem? I'm using struts 1.2.7. Thanks!
/Jeremiah

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to