POST method returns an error

2002-01-17 Thread Tom
Has anyone ever gotten this error? HTTP method POST is not supported by this URL there is no security constraint in the web.xml file for the context but it gives me this error. What possibly causes this? Tom.

Re: POST method returns an error

2002-01-17 Thread RSEQUEIRA
Tom [EMAIL PROTECTED] on 01/17/2002 12:48:37 PM Please respond to Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] cc: Subject: POST method returns an error Has anyone ever gotten this error? HTTP method POST is not supported by this URL Check if have you

Re: POST method returns an error

2002-01-17 Thread Leandro Ferreira
check if the servlet(maybe) has a doPost method. Tom wrote: Has anyone ever gotten this error? HTTP method POST is not supported by this URL there is no security constraint in the web.xml file for the context but it gives me this error. What possibly causes this? Tom. -- To

Re: POST method returns an error

2002-01-17 Thread Mark
I believe you'll get this error if the servlet only has the doGet() method implemented and not doPost(). At 01:48 PM 1/17/2002 -0500, you wrote: Has anyone ever gotten this error? HTTP method POST is not supported by this URL there is no security constraint in the web.xml file for the context

Re: POST method returns an error

2002-01-17 Thread Tom
: January 17, 2002 11:56 AM Subject: Re: POST method returns an error check if the servlet(maybe) has a doPost method. Tom wrote: Has anyone ever gotten this error? HTTP method POST is not supported by this URL there is no security constraint in the web.xml file for the context