You can call specific methods on actions in several
different ways, the <s:submit method="foo".../>, for
example, will submit a form to be processed by a
specific method. You *could* use the same technique to
pass a parameter in a GET URL; see the associated
discussion regarding this from just a few days ago
(and, in fact, at one point your exact question was
asked and answered in one of the threads).

It's also pretty easy to define an action mapping
("alias") that specifies the method in your struts.xml
configuration file, if you're going the XML
configuration route:

<action name="aName" class="aClass" method="foo">...

d.


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

Reply via email to