Hi Sarry

Try setting the variable using the

request.setAttribute(<Attribute key name as string>, <Value as Object>);

and then, access the value in the request processor using the

(<Cast to the desired object type) request.getAttribute(<Attribute key name
as string>);

Hope this helps.

- Sandeep



On 12/29/06, Sarry <[EMAIL PROTECTED]> wrote:


Hi,

I am tryin to extend request processor which basically tracks the session
and does some routing stuff.

but for that I need to pass a variable which is available on JSP and need
to
pass it to the request processor to check something.

I tried hidden field in the form but gettin value of hidden field thru
request.getParameter is not possible since it is not available however the
same value is available on action.

so now question is, how to pass any variable which should come with the
form
from JSP?
--
View this message in context:
http://www.nabble.com/Not-able-to-pass-value-from-jsp-to-request-Processor-tf2892984.html#a8082715
Sent from the Struts - User mailing list archive at Nabble.com.


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


Reply via email to