--- Filipe David Manana <[EMAIL PROTECTED]> wrote:
> is there anyway to get, from within an Action's code, a string with
> the full URL for that action (including query string with current
> value of the parameters) ?
> I already took a look at ActionSupport, ActionContext and
> ActionInvocation javadoc, but nothing there fits my needs.

Get it from the request.

Including a query string means you're already tied to the servlet spec (I
think); actions are supposed to be isolated from that level of granularity,
so requiring the query string pretty much implies you're breaking that
isolation.

d.


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

Reply via email to