I'm definately talking about "forward", but my "whatever" value is dynamic.
It's based on input (a parameter) into the action.  I don't yet understand
the best solution for that.

----- Original Message -----
From: "Ted Husted" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, August 26, 2001 2:56 PM
Subject: Re: Dynamic forwardings...


> For a forward, you just put in an encoded query string for the path:
>
>      <forward name="itemAdd"
>           path="/do/item/Add?code=whatever"/>
>
> For an action mapping, you can use the parameter property
>
>             <action
>                 path="/do/item/Add"
> ...
>                 parameter="add">
>             </action>
>
> and have the action check for the code there
>
> String code = mapping.getParameter();
>
>
> David Corbin wrote:
> >
> > I've got a an action "add", which requires a an argument "code".
> > One (at least) of the possible forwards needs to specify this "code" on
the
> > forward URL.
> >
> > How can I do that?
> >
> > Thanks
> > David Corbin
>
>

Reply via email to