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

2006-12-30 Thread Sarry
Hi L, I had no option but putting it on the actions itself so its done. I had no idea wat step comes after multi part request processing and it had some crucial information like password etc so can't convert to the "GET" method Thanks a lot for ur inputs. Laurie Harper wrote: > > Is your fo

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

2006-12-29 Thread Laurie Harper
Is your form submitted with method GET or POST? For a GET request I'd expect request.getParameter() to work fine. If the form is being posted, then you wont be able to get at form data until the multi-part request processing has occurred. The request processor should invoke that at some point,

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

2006-12-28 Thread Sarry
HI Sandeep, This doesn't work since request is going from client to server so I can't set the request.getAttribute since when I submit the form it will be a fresh new request however had I tried settin thru request.setAttribute, it would have been a old request. getting parameters thru request.p

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

2006-12-28 Thread Sandeep Gupta
Hi Sarry Try setting the variable using the request.setAttribute(, ); and then, access the value in the request processor using the (); Hope this helps. - Sandeep On 12/29/06, Sarry <[EMAIL PROTECTED]> wrote: Hi, I am tryin to extend request processor which basically tracks the sessio