WebdavServlet and different users

2004-11-03 Thread Tore Halset
Hello. I have set up a simple service using the WebdavServlet (mapped to /*) for a single user. I have overrided getResources() to define a FileDirContext to store the files. The security are defined in web-xml as a security-constraint. Everything is working very well. So, someone want

Re: WebdavServlet and different users

2004-11-03 Thread Tore Halset
On Nov 3, 2004, at 9:36, Tore Halset wrote: I have set up a simple service using the WebdavServlet (mapped to /*) for a single user. I have overrided getResources() to define a FileDirContext to store the files. The security are defined in web-xml as a security-constraint. Everything is working

Subclassing WebdavServlet

2004-07-26 Thread Michael Wille
in WebdavServlet to return our own context. What follows is a description of what we are doing: It seems there is at least one obstacle to doing this. We would have to move/copy the jar files: servlets-default.jar, servlets-common.jar, and servlets-webdav.jar to the common/lib folder. It seemed

RE: Subclassing WebdavServlet

2004-07-26 Thread Shapira, Yoav
Hi, You can subclass it, should be fine. Yoav Shapira Millennium Research Informatics -Original Message- From: Michael Wille [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 2:26 PM To: [EMAIL PROTECTED] Subject: Subclassing WebdavServlet Hello All, I would like to know if its

Re: Subclassing WebdavServlet

2004-07-26 Thread Mike Wille
, You can subclass it, should be fine. Yoav Shapira Millennium Research Informatics -Original Message- From: Michael Wille [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 2:26 PM To: [EMAIL PROTECTED] Subject: Subclassing WebdavServlet Hello All, I would like to know if its possible

Re: Subclassing WebdavServlet

2004-07-26 Thread Michael Wille
-Original Message- From: Michael Wille [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 2:26 PM To: [EMAIL PROTECTED] Subject: Subclassing WebdavServlet Hello All, I would like to know if its possible to subclass the webdav servlet that comes with Tomcat 5.x. We have need of webdav

Extending WebDavServlet

2004-04-01 Thread Jonathan Duty
Hello, I'm trying to extend the org.apache.catalina.servlets.WebdavServlet which exits in the server/lib/webdav-servlet.jar file. Has anyone been able to do this successfully? When I do this and deploy, it can't find the org.apache.catalina.servlets.WebdavServlet. Thanks in advance, Jonathan

WebdavServlet Locking Issues

2004-02-18 Thread Ryan Dewell
Hello, I've been testing the WebdavServlet that comes packaged with Tomcat 5.0.18 and am impressed by its simplicity (and by its possibility for extensibility using DirContext). I've run into some problems, however, with getting its locking functionality to work with client apps. I've

Re: WebdavServlet Locking Issues

2004-02-18 Thread Remy Maucherat
Ryan Dewell wrote: Hello, I've been testing the WebdavServlet that comes packaged with Tomcat 5.0.18 and am impressed by its simplicity (and by its possibility for extensibility using DirContext). I've run into some problems, however, with getting its locking functionality to work with client

configuring WebdavServlet

2003-10-23 Thread Andreas F. Wehowsky
Hi there, does anyone know how to configure the WebdavServlet from Apache in web.xml, such that only a certain subdirectory and its subdirs of the web-app root are WebDAV-enabled? I'm using Tomcat 4.1.24. Thanks! Andreas Wehowsky /Corena Denmark

(confirmed) WebdavServlet: PROPPATCH doesnt work

2003-08-25 Thread P . van Kemenade
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;

WebdavServlet: PROPPATCH doesnt work

2003-08-23 Thread Pike
- 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

WebdavServlet: PROPPATCH method in tomcat 4 5 doesnt work

2003-08-22 Thread Pike
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

How can I best extend WebdavServlet?

2002-09-21 Thread Dave Small
Hi all. I'm new to Tomcat4, although I've been using Tomcat3 for over two years. A major difference appears to be the classloader mechanism, which I'm having trouble getting to grips with. This leads to my question: Is it possible to write a class that extends the Tomcat4 WebdavServlet? If I

Re: How can I best extend WebdavServlet?

2002-09-21 Thread Jacob Kjome
I'm having trouble getting to grips with. This leads to my question: Is it possible to write a class that extends the Tomcat4 WebdavServlet? If I try the obvious 'MyWebdavServlet extends WebdavServlet' in my own package, I get a ClassDefNotFound for org/apache/catalina/servlets/WebdavServlet when I

Re: How can I best extend WebdavServlet?

2002-09-21 Thread Dave Small
- Original Message - From: Jacob Kjome [EMAIL PROTECTED] If the class exists in a jar archive inside $TOMCAT_HOME/server/lib or server/classes your webapps cannot see it. Only the container sees that. Thanks Jake. One question remains - if I reference the WebdavServlet within web.xml

WebdavServlet

2002-04-09 Thread August Detlefsen
How do I implement security using the WebdavServlet? mod_dav uses a standard .htpasswd file to track the various developers' logins, is this similar? Can I limit the types of DAV actions that can be performed? Where is the DAV lock information stored? Does anyone know the possible init-params

Re: WebdavServlet

2002-04-09 Thread Remy Maucherat
How do I implement security using the WebdavServlet? mod_dav uses a standard .htpasswd file to track the various developers' logins, is this similar? It uses the standard security provided by the container. Can I limit the types of DAV actions that can be performed? It's either read

Re: WebdavServlet

2002-04-09 Thread August Detlefsen
--- Remy Maucherat [EMAIL PROTECTED] wrote: How do I implement security using the WebdavServlet? mod_dav uses a standard .htpasswd file to track the various developers' logins, is this similar? It uses the standard security provided by the container. So I have to configure a Realm

Re: WebdavServlet

2002-04-09 Thread Remy Maucherat
--- Remy Maucherat [EMAIL PROTECTED] wrote: How do I implement security using the WebdavServlet? mod_dav uses a standard .htpasswd file to track the various developers' logins, is this similar? It uses the standard security provided by the container. So I have to configure

Re: WebdavServlet

2002-04-09 Thread August Detlefsen
Thanks a lot Remy, I've got it working for everything except PUT. I notice in the source that the PUT method is not implemented in WebdavServlet. Is this supposed to be handled by the DefaultServlet? --- Remy Maucherat [EMAIL PROTECTED] wrote: --- Remy Maucherat [EMAIL PROTECTED] wrote

extending webapp from WebdavServlet

2002-01-10 Thread Armijn Hemel
hi all, I've been playing around with Tomcat 4.0.1 for a little while now. I made my own webapp, which extends WebdavServlet (org.apache.catalina.servlets.WebdavServlet), but Tomcat doesn't like this and complains about missing classes. I fixed this by copying the jarfiles from $CATALINA_HOME

Re: extending webapp from WebdavServlet

2002-01-10 Thread Marcelo Demestri
, I suggest you read the section Class Loader HOW-TO. Marcelo - Original Message - From: Armijn Hemel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 10, 2002 8:10 AM Subject: extending webapp from WebdavServlet hi all, I've been playing around with Tomcat

WebdavServlet and WEB-INF folder

2001-09-12 Thread nicolas bonvin
Is there a way to configure the org.apache.catalina.servlets.WebdavServlet so that webdav clients can access the WEB-INF folder? The provided webdav webapp doesn't display the WEB-INF folder - an understandable security precaution, but I would like to turn it off. thanks, nicolas b.

WebdavServlet

2001-02-12 Thread Duncan McGregor
I'm interested in extending WebdavServlet to give directory-like access to a compound video file format we're developing, allowing the file to be treated like a directory of scenes, themselves composed of shots. So I'll serve the file and scenes as DAV containers, and generate the data