Re: Not able to pass value from jsp to request Processor

2006-12-30 Thread Sarry
ld invoke that at > some point, so try moving your custom logic to after that has happened. > > L. > > Sarry wrote: >> HI Sandeep, >> >> This doesn't work since request is going from client to server so I can't >> set the request.getAttribute s

Re: Not able to pass value from jsp to request Processor

2006-12-28 Thread Sarry
eters thru request.parameter in case of hrefs/links works fine but form initialization happens at later stage so not able to get the values from the form Regards, Saurabh Sandeep Gupta wrote: > > Hi Sarry > > Try setting the variable using the > > request.setAttribute(, ); > >

Not able to pass value from jsp to request Processor

2006-12-28 Thread Sarry
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 hidd

Re: return flow to calling servlet inside action

2006-11-07 Thread Sarry
oops you are right It should work. apetrelli wrote: > > Sarry ha scritto: >> I have a servlet which is the interface for the third party and its >> calling >> the struts actions and jsps to do some processing, and it will go throuh >> the >> actions and

return flow to calling servlet inside action

2006-11-06 Thread Sarry
I have a servlet which is the interface for the third party and its calling the struts actions and jsps to do some processing, and it will go throuh the actions and the flow should come to the calling servlet. I am facing problems since third party is calling my flow as "include" method of servle