Re: GET redirect from a POST

2006-05-17 Thread Rich Giuli
One final thing in case anyone else is interested... it looks like Java does the wrong thing and converts POST to GET on a redirect by default. However, you can set the system property "http.strictPostRedirect" in Java and then this will use POST for a redirect. Rich Rich Giuli w

Re: GET redirect from a POST

2006-05-17 Thread Rich Giuli
Tomcat should pass it to your Servlet. Your research into this problem is admirable, but it has been discussed at great length on [EMAIL PROTECTED], so don't waste your time posting to BZ: It will be immediately closed as WONTFIX, since doing what you want would break very many mor

GET redirect from a POST

2006-05-16 Thread Rich Giuli
Hi all, I am using the latest stable version of Tomcat Embedded. I have a question regarding how redirect works for a servlet. My servlet mapping name is "RexaRetrieval". The basic problem I was having is that when I send a POST request, the HttpServletRequest always says it is a GET. If th