delete

2006-10-27 Thread Philipp Südmeyer
-- Philipp Suedmeyer 116 Gloucester Road South Kensington SW7 4XH London United Kingdom Mobile: +44 79 30 94 18 01

Re: Receiving PUT-messages - calling doPUT

2006-10-20 Thread Philipp Südmeyer
Hi Christopher, First of all: thanks for spending time on my problem! I think you understand the general problem I've got. Yes your right, we did some changes on Tomcat but I just installed a new instance on another computer and tried it out in that environment but it still doesn't work. The hea

Re: Receiving PUT-messages - calling doPUT

2006-10-20 Thread Philipp Südmeyer
OK - I try to explain my problem again: I want to use a program which sends data to my Tomcat Server to be stored an disk. The problem is that the program provides only PUT. At the moment I just try to get the service-method called which is the initiater for a Servlet. As far as I know, service()

Re: Receiving PUT-messages - calling doPUT

2006-10-20 Thread Philipp Südmeyer
esp); } and you implement only doGet Of course it's not consistent if your request need to handle put and get request differently. Mic Philipp Südmeyer a écrit : > Hi, > > I need to receive data via the PUT-method instead of POST. Unfortunately > Tomcat by default calls the doGET-met

Re: Receiving PUT-messages - calling doPUT

2006-10-20 Thread Philipp Südmeyer
I overwrote the service-method of HttpServlet. When I call my servlet using an PUT service() is not called. If I use a normal Webform, it is called. I also had a look on the sent packages - They are almost equal, but the one begins with put and the other with post. Due to that fact I am pretty sur

Receiving PUT-messages - calling doPUT

2006-10-20 Thread Philipp Südmeyer
Hi, I need to receive data via the PUT-method instead of POST. Unfortunately Tomcat by default calls the doGET-method of a given Servlet instead of doPUT when it receives data by put-method. I know that I usually could use POST and everything would be fine, but in this special case I can't. So I