Re: Filter GET and POST

2007-09-27 Thread Franck Borel
Hi Christopher, I'm not sure why you'd want to do this, since servlets do not really distinguish between GET and POST parameters -- the API abstracts that complexity away from your code. If I change the request from POST to GET the Servlet works. I have no possibility to change the Servlet behi

Re: Filter GET and POST

2007-09-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Franck, Franck Borel wrote: >> I'm not sure why you'd want to do this, since >> servlets do not really distinguish between GET and POST parameters -- >> the API abstracts that complexity away from your code. > > If I change the request from POST to G

Re: Filter GET and POST

2007-09-26 Thread Franck Borel
Hi Christopher, thank you very much for your answer. i have a problem with an application that only accept GET requests. Now, I would like to know, if there is any possibility to write a filter, who is able to change the method from POST to GET. What do you mean by that? Do you just want to c

Re: Filter GET and POST

2007-09-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Franck, Franck Borel wrote: > i have a problem with an application that only accept GET requests. Now, > I would like to know, if there is any possibility to write a filter, who > is able to change the method from POST to GET. What do you mean by tha

Filter GET and POST

2007-09-26 Thread Franck Borel
Hi, i have a problem with an application that only accept GET requests. Now, I would like to know, if there is any possibility to write a filter, who is able to change the method from POST to GET. I see that the FORM-Authentication could speek GET after authentication with POST method. Is th