You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Aaron Gerlich <aa...@salarinc.com> on 2002/08/20 20:42:48 UTC

Enable HTTP method PUT

USING Tomcat4.0 under Redhat Linux 7.3

I am receiving an Error when directly requesting to Tomcat (i.e not
using a connector from a web server)

HTTP/1.1 405 HTTP method PUT is not supported by this URL

I definately have correctly implemented this doPut method on the
servlet (it works currently under JRun and IPlanet).

I cannot seem to find any place to turn on this Method!  I am not
using a realm... interested in turning this on for ALL USERS for the
entire web-site.  Just the easiest way works for me (this is our new
test server)

Thanks in Advance,
Aaron Gerlich
Salar Inc
2400 Boston St - Suite 326
Baltimore, MD 21224

aaron@salarinc.com
(410)327-9153 ext. 1




--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: Enable HTTP method PUT

Posted by Jim Urban <ju...@parkcitysolutions.com>.
Did you implement the goGet method?

protected void doGet(HttpServletRequest iRequest, HttpServletResponse
iResponse)
		 throws ServletException, java.io.IOException
{
	doPost(iRequest, iResponse);
}


Jim Urban - jurban@parkcitysolutions.com
Park City Solutions Inc.
Clinical Connectivity Suite Product Manager
Suite 295
500 Park Blvd.
Itasca, IL  60143
Voice:  (630) 250-3045 x106
Fax:  (630) 250-3046

CONFIDENTIALITY NOTICE
This message and any included attachments are from Park City Solutions Inc.
and are intended only for the entity to which it is addressed. The contained
information is confidential and privileged material. If you are not the
intended recipient, you are hereby notified that any use, dissemination, or
copying of this communication is strictly prohibited and may be unlawful. If
you have received this communication in error please notify the sender of
the delivery error by e-mail or call Park City Solutions Inc. corporate
offices at (435) 654-0621

-----Original Message-----
From: Aaron Gerlich [mailto:aaron@salarinc.com]
Sent: Tuesday, August 20, 2002 1:43 PM
To: tomcat-user@jakarta.apache.org
Subject: Enable HTTP method PUT

USING Tomcat4.0 under Redhat Linux 7.3

I am receiving an Error when directly requesting to Tomcat (i.e not
using a connector from a web server)

HTTP/1.1 405 HTTP method PUT is not supported by this URL

I definately have correctly implemented this doPut method on the
servlet (it works currently under JRun and IPlanet).

I cannot seem to find any place to turn on this Method!  I am not
using a realm... interested in turning this on for ALL USERS for the
entire web-site.  Just the easiest way works for me (this is our new
test server)

Thanks in Advance,
Aaron Gerlich
Salar Inc
2400 Boston St - Suite 326
Baltimore, MD 21224

aaron@salarinc.com
(410)327-9153 ext. 1




--
To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail:
<ma...@jakarta.apache.org>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>