Re: GET and POST data in same request

2010-12-02 Thread Mark Thomas
On 02/12/2010 22:21, Larry wrote: > Hello, > > I need to have an apache mod_rewrite pass a request ( which contains > POST data ) along to my servlet with some GET parameters. > > I think when Tomcat sees the GET params, it invokes my servlet's doGet > ( which annihilates my POST data ). > > I n

Re: GET and POST data in same request

2010-12-02 Thread Justin Randall
GET and POST are HTTP verbs/operations. It is impossible to have a combo GET/POST. Which ever verb is specified in the HTTP headers is what will control whether doGet or doPost is called. You are correct that GET and POST reference data differently, however they are actions and not "areas of d