Re: Enabling HTTP Put

2010-04-02 Thread Bill Barker
've tried using ServletContext.setAttribute("readonly", "false") without any success. What would that have to do with "enabling" HTTP PUT requests ? I think that the OP wants to enable PUT in the DefaultServlet in an embedded configuration. If my psychic powers are even

RE: Enabling HTTP Put

2010-04-02 Thread Caldarale, Charles R
> From: Martin Gainty [mailto:mgai...@hotmail.com] > Subject: RE: Enabling HTTP Put > > since doPut disallows request processing if readOnly is true as seen > here > > protected void doPut(HttpServletRequest req, HttpServletResponseresp) > throws Servl

RE: Enabling HTTP Put

2010-04-02 Thread Martin Gainty
alt uebernehmen. > From: mo...@adelphia.net > To: users@tomcat.apache.org > Subject: Re: Enabling HTTP Put > Date: Thu, 1 Apr 2010 23:22:32 -0700 > > Hi, > > I was wondering if there was a way to enable HTTP Put via the API's. I've > tried using ServletC

Re: Enabling HTTP Put

2010-04-02 Thread André Warnier
any success. What would that have to do with "enabling" HTTP PUT requests ? Tomcat itself does not forbid or disable any type of valid HTTP request, PUT included. Now, it is your responsibility to provide an application, within Tomcat, which can handle PUT requests. For an exam

Re: Enabling HTTP Put

2010-04-01 Thread Stacy Mobley
Hi, I was wondering if there was a way to enable HTTP Put via the API's. I've tried using ServletContext.setAttribute("readonly", "false") without any success. -- Stacy