You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Pike <pi...@kw.nl> on 2003/08/22 14:46:59 UTC

WebdavServlet: PROPPATCH method in tomcat 4 & 5 doesnt work

Hi

can someone confirm that the WebdavServlet's
PROPPATCH  method in tomcat 4 & 5 doesnt work ?

I found it noted in several user mails;
its not noted in any docs, in fact, the javadocs suggest it should do 
'something'
its also not in the bugtracker, shouldnt it be ?

whats the use of webdav without properties ? :-)

thanks,
*-pike
==========
Signature #1
==========


(confirmed) WebdavServlet: PROPPATCH doesnt work

Posted by "P.van Kemenade" <pi...@kw.nl>.
Hi

confirmed:

> 	the WebdavServlet's PROPPATCH  method in tomcat 4 & 5 doesnt work

actually, it just isnt implemented.

the fact is not in the docs (afaik), on the contrary, several pages
in the jakarta site claim tomcat 4 > supports "webdav level 2", which 
is not true.

it is not in the bugtracker; but it may be considered
"not a bug", it's just not implemented.

the tomcat 5 source code simply reads

     /**
      * PROPPATCH Method.
      */
     protected void doProppatch(HttpServletRequest req,
                                HttpServletResponse resp)
         throws ServletException, IOException {

         if (readOnly) {
             resp.sendError(WebdavStatus.SC_FORBIDDEN);
             return;
         }

         if (isLocked(req)) {
             resp.sendError(WebdavStatus.SC_LOCKED);
             return;
         }

         resp.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED);

     }


$2c,
*-pike


============

Internet search engines that take money from Web sites in exchange for 
prominent placement should make that practice clearer to Web users, 
federal regulators said Friday.Many search engine Web sites, including 
AltaVista, LookSmart and AOL Search, give preferred placement to paid 
advertisers. The Federal Trade Commission said that prime space can 
confuse Web users who are looking for the best response to their 
search, rather than ads for sites that paid up front.


WebdavServlet: PROPPATCH doesnt work

Posted by Pike <pi...@kw.nl>.
Hi


I'm sorry to keep nagging about this, but  I need to make a decision 
(soon)
and it's not in any docs or in the bugtracker (i think it should be).

	can someone confirm that the WebdavServlet's
	PROPPATCH  method in tomcat 4 & 5 doesnt work ?

if so, can someone tell me why - if it's not that hard, I could
implement it myself in a webdavservlet extension class.

our company is going to host it's media and xmldb
publicly through webdav.  I would like to use 'plain'
Tomcat instead of Slide or Tamino so we can skip the
overhead of these solutions and easily write our custom
solutions, which we usually do.


thanks,
*-pike

====================================
	V2_ http://archive.v2.nl
====================================