Re: Passing multiple parameters from action mapping

2004-10-20 Thread Hariharan V
Jeff, Thanks for that info, I will try out this option. On Wed, 20 Oct 2004 09:50:28 -0400, Jeff Beal <[EMAIL PROTECTED]> wrote: > To do this, you'll need to create a custom ActionMapping class and use > the element. > > public class MyActionMapping extends ActionMapping { >private String

Re: Passing multiple parameters from action mapping

2004-10-20 Thread Jeff Beal
To do this, you'll need to create a custom ActionMapping class and use the element. public class MyActionMapping extends ActionMapping { private String prop1; public String getProp1() { return prop1; } public void setProp1(String newProp1) { prop1 = newProp1; } private String prop2; pu

Re: Passing multiple parameters from action mapping

2004-10-20 Thread Luis Gervaso
You can only pass one parameter with this way Regards On Wed, 20 Oct 2004 15:16:43 +0200, Hariharan V <[EMAIL PROTECTED]> wrote: > Hi , > > I was looking for a way to pass multiple parameters through my action mapping. > can I pass only one parameter or is it possible to pass multiple? > > f

Passing multiple parameters from action mapping

2004-10-20 Thread Hariharan V
Hi , I was looking for a way to pass multiple parameters through my action mapping. can I pass only one parameter or is it possible to pass multiple? for example in this config I can pass only one parameter {parameter="method"} -- -Hari ---