Re: j_security_check

2008-02-05 Thread Ashok Venkat
, you are then directed to the result of the initial request - which is a GET, with no params. As Konstantin also explained, your first request could be the POST, complete with params, as that is where you will end up, after auth. p Ashok Venkat wrote: > Thanks for the detailed explanation,

Re: j_security_check

2008-02-03 Thread Ashok Venkat
Thanks for the detailed explanation, as you mentioned it seems that the second request is being ignored ,but i am not clear how come the original request is matching with the second request? The original is GET and the second one is POST? does tomcat compare just the URL strings? - Origina

j_security_check

2008-02-02 Thread Ashok Venkat
Hi, I have the following code in a scheduler class, which is trying to invoke a servlet String url = "https://localhost:8444/servlet/TestServlet";; // Get HTTP client instance HttpClient httpClient = new HttpClient(); // Create HTTP GET method and exe

Re: Hidden form fields not found in request

2007-10-26 Thread Ashok Venkat
n form fields not found in request Ognjen Blagojevic wrote: > Hi Ashok, > > Ashok Venkat wrote: >> In the below code, i am submitting a form to itself in the onload >> method and changing some hidden form field values. After the form is >> submitted, the hidden values

Hidden form fields not found in request

2007-10-25 Thread Ashok Venkat
Hello, In the below code, i am submitting a form to itself in the onload method and changing some hidden form field values. After the form is submitted, the hidden values are not available in the request object.As a result, the page gets into an endless loop. Thanks for any help Code: /