Re: RESTful applications

2010-09-20 Thread Andre Juffer
Could it be true that Jetty (the one that comes with cocoon is 6.1.7, a rather old one) is actually not supporting the getParameters() famility of methods when the HTTP request method is PUT? It just supports GET and HEAD (is required to support these methods). If so, the problem is Jetty, not

Re: RESTful applications

2010-09-20 Thread Andre Juffer
Just a another follow up. It appears that the whole issue is indeed caused by the servlet engine. According to the sevlet specification, a PUT request will not necessary be parsed for extracting request parameters to make them available through the getParameters() family of methods. It is

Re: RESTful applications

2010-09-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andre, On 9/20/2010 6:34 AM, Andre Juffer wrote: Could it be true that Jetty (the one that comes with cocoon is 6.1.7, a rather old one) is actually not supporting the getParameters() family of methods when the HTTP request method is PUT? This

Re: RESTful applications

2010-09-20 Thread Andre Juffer
On 09/20/2010 08:25 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andre, On 9/20/2010 6:34 AM, Andre Juffer wrote: Could it be true that Jetty (the one that comes with cocoon is 6.1.7, a rather old one) is actually not supporting the getParameters() family of

Re: RESTful applications

2010-09-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andre, On 9/20/2010 3:06 PM, Andre Juffer wrote: The source of my problem is therefore clear. Absolutely. PUT and POST have somewhat different meanings to RESTful applications and I intend to stick to that. On the tomcat list, it was indeed also