I'm using Tomcat.....don't know if it'll work using something else.  Maybe
if you show some of your code I can help.  

-----Original Message-----
From: Greg Maletic [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 03, 2001 1:59 PM
To: [EMAIL PROTECTED]
Subject: RE: Reaching Action class from Href Link


It's not working for me, for some reason.


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
rg]On Behalf Of Fletcher, Ken
Sent: Friday, August 03, 2001 11:41 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Reaching Action class from Href Link


<html:link href="SomeAction.do"></html:link> does work, as long as you have
the .do in there (did for me, anyway).

-----Original Message-----
From: John M. Corro [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 03, 2001 3:33 PM
To: [EMAIL PROTECTED]
Subject: Re: Reaching Action class from Href Link


Thanks to John and Ken for the assistance.

Point of clarification other interested newbies, using a form's 'action'
value as the link's 'href' value will not work - the reason mine wasn't
working.  For instance,

<form action="SomeAction">

may work, where as

<a href="SomeAction">~~~</a> or <html:link href="SomeAction"~~~></html:link>

will not.




----- Original Message -----
From: "John Schroeder" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 03, 2001 11:22 AM
Subject: RE: Reaching Action class from Href Link


> Using the struts html:form tag will set the method to POST by default.
This
> won't prevent you from using the link as you describe though.  The service
> methods of an HttpServlet doPost() and doGet() will accomplish essentially
> the same goal (often doGet() will just call doPost() ).  In the case of
the
> struts ActionServlet, both of these methods call process().  So you can
use
> a query string to pass your parameters (or extra path info if you wish).
>
> So, that was a little long-winded way of saying that your link can look
> like:
> <a href="/someContext/someAction.do?param1=foo&param2=bar&param3=baz">LINK
> TEXT</a>
>
> Hope this helps!!
>
> --John
>
>
>
>
>
> -----Original Message-----
> From: John M. Corro [mailto:[EMAIL PROTECTED]]
> Sent: Friday, August 03, 2001 1:07 PM
> To: [EMAIL PROTECTED]
> Subject: Reaching Action class from Href Link
>
>
> I've recently begun working with Struts and am looking to create a
scenario
> where a user can click on a link and trigger some event in an Action class
> (ie the clicking of a link would be the same as clicking a form's submit
> button).  My understanding is that within Struts forms submit by the post
> method by default so I don't know if the only way to reach an Action class
> is by an actual form.  Any one have any insight?
>
>
>

Reply via email to