Webdav PROPPATCH implementation

2005-12-01 Thread William Durrell
Hi ,
 
   I looked at the webdav servlet in apache-tomcat-5.5.13-src and it
does not appear that the PROPPATCH method is implemented . Is there a
release that it is or am I looking in the right place? 
 
 
/**
 * 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_NOT_IMPLEMENTED);
 
}
 
Thanks ,
 
Bill 


Re: Webdav PROPPATCH implementation

2005-12-01 Thread Mark Thomas

William Durrell wrote:

Hi ,
 
   I looked at the webdav servlet in apache-tomcat-5.5.13-src and it

does not appear that the PROPPATCH method is implemented . Is there a
release that it is or am I looking in the right place? 
 


You are in the right place. This method is not, and has never been, 
implemented. If you want a more complete WEBDav implementation, take a 
look at Apache Slide.


Mark


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Webdav PROPPATCH implementation

2005-12-01 Thread William Durrell
Got it .

Thanks. 

-Original Message-
From: Mark Thomas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 01, 2005 4:33 PM
To: Tomcat Users List
Subject: Re: Webdav PROPPATCH implementation

William Durrell wrote:
 Hi ,
  
I looked at the webdav servlet in apache-tomcat-5.5.13-src and it 
 does not appear that the PROPPATCH method is implemented . Is there a 
 release that it is or am I looking in the right place?
  

You are in the right place. This method is not, and has never been,
implemented. If you want a more complete WEBDav implementation, take a
look at Apache Slide.

Mark


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]