Re: WebDAV characters bug?

2005-10-03 Thread Mark Thomas
Looks like a bug to me. Create a bugzilla entry for it and I'll try and take a look before the next release. Mark Roland Rabben wrote: I am using Tomcat 5.5.9 (on Windows XP) and WebDAV to upload files to my server. However it seems to be a bug or limitation in the Tomcat WebDAV that limits

RE: WebDav on Port 80

2005-08-22 Thread Marius Hanganu
The problem can be reproduced. There is already a bug describing this issue: http://issues.apache.org/bugzilla/show_bug.cgi?id=26449 Regards, Marius -Original Message- From: George Francis [mailto:[EMAIL PROTECTED] Sent: Sunday, August 21, 2005 7:07 PM To:

Re: WebDav on Port 80

2005-08-22 Thread Kyle
On 5.5.9, I can get http://localhost/webdav/index.html to serve up the webdav home page. If I just put /webdav in, I get the directory index. Though, I suspect I could get it to serve it up straight away if I play with the mapping. AH!!! Just occured to me. I'm picking it up through Apache

Re: WebDav on Port 80

2005-08-22 Thread Tom Spence
On 5.5.9... * Go to webapps/webdav/WEB-INF * Edit web.xml Go to bottom and fix... welcome-file-list welcome-fileindex.html/welcome-file /welcome-file-list After I fixed, still not work... Tom Kyle [EMAIL PROTECTED] wrote: On 5.5.9, I can get

Re: WebDav on Port 80

2005-08-22 Thread George Francis
Hi, That bug report does not seem to relate to my issue; there is no mention of different behavior depending on what port Tomcat is running on... On 8/22/05, Marius Hanganu [EMAIL PROTECTED] wrote: The problem can be reproduced. There is already a bug describing this issue:

Re: WebDav on Port 80

2005-08-22 Thread Sunjay Gunda
Hi George, I am under the impression that some ports are reserved for the computer. I think it ranges from 1-2000 (correct me if I am wrong). Try using any port after 2000, it should work. Thanks Sunjay --- George Francis [EMAIL PROTECTED] wrote: Hi, That bug report does not seem to relate

RE: WebDav on Port 80

2005-08-22 Thread Marius Hanganu
It works also with ports like 81 or 1999. Marius -Original Message- From: Sunjay Gunda [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 4:52 PM To: Tomcat Users List Subject: Re: WebDav on Port 80 Hi George, I am under the impression that some ports are reserved

RE: WebDav on Port 80

2005-08-22 Thread Marius Hanganu
path was not found. I also added index.html to the welcome file list. Note: on any other port than 80 it works properly. Marius -Original Message- From: George Francis [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 4:45 PM To: Tomcat Users List Subject: Re: WebDav on Port 80

Re: WebDav on Port 80

2005-08-22 Thread George Francis
-Original Message- From: George Francis [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 4:45 PM To: Tomcat Users List Subject: Re: WebDav on Port 80 Hi, That bug report does not seem to relate to my issue; there is no mention of different behavior depending on what port Tomcat

Re: WebDav on Port 80

2005-08-22 Thread Mark Thomas
George Francis wrote: Thanks - thats exactly my experience also; Does anyone here know why port 80 doesnt work? See http://issues.apache.org/bugzilla/show_bug.cgi?id=36303 Mark - To unsubscribe, e-mail: [EMAIL PROTECTED]

RE: Webdav on Tomcat 5.0.28 fails

2005-06-16 Thread Padmanabhan, Sheeba
with tomcat configuration settings. If I am doing something wrong, please correct me. Any help would be greatly appreciated. Thanks Sheeba -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 3:01 PM To: Tomcat Users List Subject: Re: Webdav on Tomcat

Re: Webdav on Tomcat 5.0.28 fails

2005-06-16 Thread Mark Thomas
[mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 3:01 PM To: Tomcat Users List Subject: Re: Webdav on Tomcat 5.0.28 fails What URL mapping are you using? For MS clients /* works better than /. Mark Padmanabhan, Sheeba wrote: Our Webdav Server works fine with Tomcat 4.0. But when

RE: Webdav on Tomcat 5.0.28 fails

2005-06-16 Thread Padmanabhan, Sheeba
other appServers are working fine with the same server. Thank you very much in advance. Thanks Sheeba -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 2:11 PM To: Tomcat Users List Subject: Re: Webdav on Tomcat 5.0.28 fails It is the webdav

Re: Webdav on Tomcat 5.0.28 fails

2005-06-16 Thread Jason Bainbridge
On 6/16/05, Padmanabhan, Sheeba [EMAIL PROTECTED] wrote: Hi Mark, I couldn't find any webdav servlet entry in the \conf\web.xml. Could you please tell me which tag exactly I should modify? It would be \webapps\webdav\WEB-INF\web.xml -- Jason Bainbridge http://kde.org - [EMAIL PROTECTED]

RE: Webdav on Tomcat 5.0.28 fails

2005-06-16 Thread Padmanabhan, Sheeba
, June 16, 2005 3:18 PM To: Tomcat Users List Subject: Re: Webdav on Tomcat 5.0.28 fails On 6/16/05, Padmanabhan, Sheeba [EMAIL PROTECTED] wrote: Hi Mark, I couldn't find any webdav servlet entry in the \conf\web.xml. Could you please tell me which tag exactly I should modify? It would

Re: Webdav on Tomcat 5.0.28 fails

2005-06-15 Thread Mark Thomas
What URL mapping are you using? For MS clients /* works better than /. Mark Padmanabhan, Sheeba wrote: Our Webdav Server works fine with Tomcat 4.0. But when it is configured to use it through Tomcat 5.0, it just won't work. The Webfolders, Office Appilications - all are failing. Am I missing

Re: Webdav, WEB_INF

2005-04-11 Thread Tim Funk
IIRC - you cannot see the WEB-INF directory using the webdav webapp. Its a constraint imposed by the servlet spec that any request to WEB-INF is not allowed. -Tim Patrick Sifneos (Rolotec AG new) wrote: Hi all When i connect to a webdav resource, the WEB-INF directory remains invisible. I'm

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Fernando Salazar de Paz
Internet Explorer uses UTF-8 to encode URLs and Tomcat tries ISO-8859-1 in decoding. The result is a wrong filename. String fileName = URLEncoder.encode(manualín.pdf, ISO-8859-1); *1 System.out.println(fileName+ produce +URLDecoder.decode(fileName, UTF-8)); fileName =

Re: Webdav, WEB_INF

2005-04-11 Thread Patrick [EMAIL PROTECTED] AG
Thanks for the Info Tim! This is too bad. That means, i have to install Apache abd run tomcat using Apache as Web-Server. It is then possible to see the WEB-INF directory! On 11.04.2005, at 14:28, Tim Funk wrote: IIRC - you cannot see the WEB-INF directory using the webdav webapp. Its a

RE: Webdav, WEB_INF

2005-04-11 Thread Raghupathy,Gurumoorthy
Yes .. You can use an Alias -Original Message- From: Patrick [EMAIL PROTECTED] AG [mailto:[EMAIL PROTECTED] Sent: 11 April 2005 13:53 To: Tomcat Users List Subject: Re: Webdav, WEB_INF Thanks for the Info Tim! This is too bad. That means, i have to install Apache abd run tomcat using

Re: Webdav, WEB_INF

2005-04-11 Thread Patrick [EMAIL PROTECTED] AG
Yes what? Is it possible with tomcat standalone? On 11.04.2005, at 15:08, Raghupathy,Gurumoorthy wrote: Yes .. You can use an Alias -Original Message- From: Patrick [EMAIL PROTECTED] AG [mailto:[EMAIL PROTECTED] Sent: 11 April 2005 13:53 To: Tomcat Users List Subject: Re: Webdav, WEB_INF

RE: Webdav, WEB_INF

2005-04-11 Thread Raghupathy,Gurumoorthy
With Apache HTTP server and WEBDAV module you can ... Not with tomcat standalone -Original Message- From: Patrick [EMAIL PROTECTED] AG [mailto:[EMAIL PROTECTED] Sent: 11 April 2005 14:20 To: Tomcat Users List Subject: Re: Webdav, WEB_INF Yes what? Is it possible with tomcat standalone

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Fernando Salazar de Paz
-Mensaje original- De: Fernando Salazar de Paz [mailto:[EMAIL PROTECTED] Enviado el: lunes, 11 de abril de 2005 14:36 Para: 'Tomcat Users List' Asunto: RE: Webdav issue with non ASCII characters Internet Explorer uses UTF-8 to encode URLs and Tomcat tries ISO-8859-1

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Fernando Salazar de Paz
Paz [mailto:[EMAIL PROTECTED] Enviado el: lunes, 11 de abril de 2005 16:41 Para: 'Tomcat Users List' Asunto: RE: Webdav issue with non ASCII characters Using URIEncoding parameter, at Server.xml, PUT and DELETE methods works ok. I am still having trouble with GET method. !-- Define a non-SSL

RE: Webdav issue with non ASCII characters

2005-04-11 Thread Peter Crowther
From: Fernando Salazar de Paz [mailto:[EMAIL PROTECTED] when I request a PDF file a new (second) request is made by Acrobat Reader. Acrobat Reader uses ISO-8859-1 and Tomcat will not be able to decode the uri properly. What is the reason for the second request ? The Acrobat reader IE

RE: Webdav Webfolder issue when container security enabled

2005-04-06 Thread Fernando Salazar de Paz
:8080/webdav/BizObj.pdf 3. Auth dialog Fails Cheers, Fer -Mensaje original- De: Mark Thomas [mailto:[EMAIL PROTECTED] Enviado el: martes, 05 de abril de 2005 23:32 Para: Tomcat Users List Asunto: Re: Webdav Webfolder issue when container security enabled Use /* as the servlet mapping

RE: Webdav Webfolder issue when container security enabled

2005-04-05 Thread Fernando Salazar de Paz
Thanks for your help, Mark I have uncommented the servlet's readonly init parameter and security constraints for testing. I have tried to comment welcome-file-list, but web.xml in C:\Tomcat 4.1\conf have the same welcome-file-list, finally I have removed index.html (I think I am doing something

Re: Webdav Webfolder issue when container security enabled

2005-04-05 Thread Mark Thomas
Use /* as the servlet mapping. This will override any welcome file processing etc. Let me know which test fail with this mapping. Cheers, Mark Fernando Salazar de Paz wrote: Thanks for your help, Mark I have uncommented the servlet's readonly init parameter and security constraints for testing.

RE: Webdav Webfolder issue when container security enabled

2005-04-04 Thread Fernando Salazar de Paz
-Mensaje original- De: Mark Thomas [mailto:[EMAIL PROTECTED] Enviado el: viernes, 01 de abril de 2005 20:23 Para: Tomcat Users List Asunto: Re: Webdav Webfolder issue when container security enabled Put together some full step-by-step

RE: Webdav Webfolder issue when container security enabled

2005-04-04 Thread Fernando Salazar de Paz
Deleting C:\Tomcat 4.1\webapps\webdav\index.html listings were ok If I comment welcome-files in web.xml I think it should take welcome-files defined In C:\Tomcat 4.1\conf\web.xml or not ? Now I can open PDF files with IExplore After several restarts changing webdav\WEB-INF\web.xml i. I could

Re: Webdav Webfolder issue when container security enabled

2005-04-04 Thread Mark Thomas
Can you post you web.xml please. Thanks, Mark Fernando Salazar de Paz wrote: Deleting C:\Tomcat 4.1\webapps\webdav\index.html listings were ok If I comment welcome-files in web.xml I think it should take welcome-files defined In C:\Tomcat 4.1\conf\web.xml or not ? Now I can open PDF files with

RE: Webdav Webfolder issue when container security enabled

2005-04-01 Thread Fernando Salazar de Paz
¿? (the file is not corrupted) ¿? Some type of locking ¿? (Restarting tomcat service doesn't seem to correct the problem). -Mensaje original- De: Mark Thomas [mailto:[EMAIL PROTECTED] Enviado el: viernes, 01 de abril de 2005 0:50 Para: Tomcat Users List Asunto: Re: Webdav Webfolder issue when

RE: Webdav Webfolder issue when container security enabled

2005-04-01 Thread Fernando Salazar de Paz
Another thing I have problems using tcpmon from Axis. Index Out of Bounds exceptions when I put the files, and so on. I have used ethereal to sniff network traffic. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Webdav Webfolder issue when container security enabled

2005-04-01 Thread Mark Thomas
Put together some full step-by-step instructions (from a clean install of 4.1.x or 5.5.x) and I'll take another look. Mark Fernando Salazar de Paz wrote: Another thing I have problems using tcpmon from Axis. Index Out of Bounds exceptions when I put the files, and so on. I have used ethereal to

Re: Webdav Webfolder issue when container security enabled

2005-03-31 Thread Mark Thomas
I have done some testing with the latest TC4.1.x source from CVS, WinXP SP2, and tcpmon from the Axis project so I can look at the request and responses. I have a web folder and IE open on http://localhost:8080/webdav As a result of my tests I noted the following: 1. If I drag a .pdf to the

Re: WebDAV and redirects

2004-12-30 Thread Mark Thomas
Garret Wilson wrote: I've been struggling with the whole issue of Microsoft WebDAV clients failing to including a trailing slash in collection URIs even when I ask nicely. It looks like I can fix this with redirects, but that opens up another can of worms: the Microsoft client redirect bug. I'm

Re: WebDAV and redirects

2004-12-30 Thread Garret Wilson
Mark, Mark Thomas wrote: TC4 and TC5 handle requests for http://www.example.com/folder differently. TC4 does a forward to http://www.example.com/folder/ whereas TC5 issues a redirect. ... For TC4 - returns response for ../folder/ For TC5 mapped to / issues a 302 For TC5 mapped to /* returns

RE: WebDAV servlet bug for UTF-8 characters

2004-12-13 Thread Mark Thomas
Sorry for the delayed reply. You need to set URIEncoding=UTF-8 in the connector. Mark -Original Message- From: Garret Wilson [mailto:[EMAIL PROTECTED] Sent: Monday, November 29, 2004 11:52 PM To: Tomcat Users List Subject: WebDAV servlet bug for UTF-8 characters I have a file

Re: webdav servlet file path; documentation

2004-11-29 Thread Garret Wilson
Mark, Thanks for giving me a place to start. I've had a half-our glance at the source code; let me know if I'm going in the right direction. Doesn't this simply entail making sure that the ProxyDirContext resources object created in DefaultServlet has the correct file system root? Would that

RE: WebDav behavior

2004-11-19 Thread Mark Thomas
The webdav servlets are exactly the same, give or take a few formatting differences. There are difference between 4.1.x and 5.x in how requests for http://host/webapp/ are handled. Generally, you can use a context for webdav, or you can use it with a browser to server content. Trying to mix the

RE: WebDav behavior

2004-11-19 Thread Brian K Bonner
Mark, I understand the issue w/ contexts (and I believe I understand the issue w/ not being able to handle JSPs), **but I don't understand why the base behavior is different**. Are you suggesting that the 4.1.x, 5.x is causing a difference in the Webdav behavior that would prevent

RE: WebDav behavior

2004-11-19 Thread Mark Thomas
To: Tomcat Users List Subject: RE: WebDav behavior Mark, I understand the issue w/ contexts (and I believe I understand the issue w/ not being able to handle JSPs), **but I don't understand why the base behavior is different**. Are you suggesting that the 4.1.x, 5.x is causing a difference

RE: WebDav behavior

2004-11-19 Thread Brian K Bonner
is that they don't handle redirects to well (or at all even...) -Original Message- From: Brian K Bonner [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 7:21 PM To: Tomcat Users List Subject: RE: WebDav behavior Mark, I understand the issue w/ contexts (and I believe

RE: WebDav behavior

2004-11-19 Thread Brian K Bonner
- From: Brian K Bonner [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 7:21 PM To: Tomcat Users List Subject: RE: WebDav behavior Mark, I understand the issue w/ contexts (and I believe I understand the issue w/ not being able to handle JSPs), **but I don't

RE: WebDav behavior

2004-11-19 Thread Mark Thomas
From: Brian K Bonner [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 9:10 PM To: Tomcat Users List Subject: RE: WebDav behavior OK, I probably need to start over. I'd like to access content from http://localhost:8080/abc with my browser and be able to see the Index.html

RE: WebDav behavior

2004-11-19 Thread Robert Hunt
I was able to map two contexts to the same docbase, one a normal web.xml context (recognizing welcome files) and one that supported WevDAV ops (producing directory lists). See this post: ( RE: Multiple contexts mapped to single docbase)

Re: WebDAV-Servlet with Contexts different from FileDirContext

2004-11-16 Thread Oliver Zeigermann
OK, talking to myself as it seems ;) Accept my apologies if no one is interested, but bringing this even further wouldn't it be an option to have the servlet seperated from Tomcat and letting it implement against an API a little bit richter then directory context? Maybe in commons? Such an API

RE: WebDAV-Servlet with Contexts different from FileDirContext

2004-11-16 Thread Mark Thomas
Message- From: Oliver Zeigermann [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 16, 2004 5:25 PM To: [EMAIL PROTECTED] Subject: Re: WebDAV-Servlet with Contexts different from FileDirContext OK, talking to myself as it seems ;) Accept my apologies if no one is interested

Re: WebDAV-Servlet with Contexts different from FileDirContext

2004-11-16 Thread Remy Maucherat
On Tue, 16 Nov 2004 21:47:48 -, Mark Thomas [EMAIL PROTECTED] wrote: Not quite talking to yourself but what with timezones and day jobs and all that it isn't always possible to reply quickly. ;) I am not sure of the level of interest in this but people have taken the trouble to write

Re: WebDAV-Servlet with Contexts different from FileDirContext

2004-11-16 Thread Oliver Zeigermann
Mark, Remy, thanks for your attention. Did not want to complain about missing responses, I was just honestly wondering if anyone was interested. Obviously, someone is :) I understand you are not interested in making this servlet available to a broader scope of people, are you? If so I would

Re: WebDAV-Servlet with Contexts different from FileDirContext

2004-11-15 Thread Oliver Zeigermann
Looking into this further, couldn't proppatch be implemented properly? I know the file dir context does not support setting of attributes, but there are other dir contexts imaginable that do, right? Oliver On Mon, 15 Nov 2004 02:23:49 +0100, Oliver Zeigermann [EMAIL PROTECTED] wrote: Folks,

RE: webdav help

2004-10-22 Thread Mark Thomas
From: Darren Grant [mailto:[EMAIL PROTECTED] Sent: Friday, October 22, 2004 6:08 AM To: [EMAIL PROTECTED] Subject: webdav help The example webdav servlet allows you to log into http://localhost:8080/webdav; and gives you access to the /$CATALINA_HOME/webapps/webdav/ folder which

Re: webdav help

2004-10-22 Thread Darren Grant
Hey Mark thanks. I believe the content is going to be 100% static. So what would the syntax look like for adding the webdav servlet to the webapp? Appreciate it, Darren Mark Thomas wrote: From: Darren Grant [mailto:[EMAIL PROTECTED] Sent: Friday, October 22, 2004 6:08 AM To: [EMAIL

RE: webdav servlet file path; documentation

2004-10-02 Thread Mark Thomas
From: Garret Wilson [mailto:[EMAIL PROTECTED] Something like this: Context docBase=C:\webapps\mywebapp.war Parameter name=webdavBase value=C:\data\mywebappdata\/ /Context This should be a parameter of the webdav servlet rather than a context one. I can't imagine why this wouldn't be

Re: webdav servlet file path; documentation

2004-09-25 Thread Garret Wilson
Garret Wilson wrote: By default the servlet accesses the file system inside the web context. (That is, a servlet mapped to /context/webapp/* will show files in /context/webapp/ .) Ack! Apparently the servlet will allow access to files in /context/ , which is much worse? 3. How do I map the

RE: WebDAV using Tomcat 5 and Dreamweaver 7.0.1

2004-08-16 Thread Robert Hunt
Thanks Mark. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: WebDAV using Tomcat 5 and Dreamweaver 7.0.1

2004-08-15 Thread Mark Thomas
] Sent: Friday, August 13, 2004 10:00 PM To: 'Tomcat Users List' Subject: RE: WebDAV using Tomcat 5 and Dreamweaver 7.0.1 Looking at the headers the nc value in the header from dreamweaver is quoted. My reading of RFC2617 is that the nc value should not be quoted. Tomcat removes quotes from

RE: WebDAV using Tomcat 5 and Dreamweaver 7.0.1

2004-08-13 Thread Mark Thomas
Looking at the headers the nc value in the header from dreamweaver is quoted. My reading of RFC2617 is that the nc value should not be quoted. Tomcat removes quotes from those parameters that are allowed to be quoted. Quoting selectively from RFC2617: nonce-count = nc = nc-value

RE: WEBDAV error - date and time string

2004-06-23 Thread Mark Thomas
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 10:19 PM To: [EMAIL PROTECTED] Subject: WEBDAV error - date and time string I'm trying to use the Adobe GoLive 7.0 WEBDAV client with a Tomcat 5.0.27. When I attempt to connect,

RE: WEBDAV error - date and time string

2004-06-23 Thread Mark Thomas
format. You need to take this up with Adobe. Mark -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 10:31 PM To: 'Tomcat Users List' Subject: RE: WEBDAV error - date and time string -Original Message- From: [EMAIL PROTECTED

RE: WEBDAV error - date and time string

2004-06-23 Thread cyclecarl-hsx
: RE: WEBDAV error - date and time string -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 23, 2004 10:19 PM To: [EMAIL PROTECTED] Subject: WEBDAV error - date and time string I'm trying to use the Adobe GoLive 7.0 WEBDAV client

Re: webdav servlet problems with Tomcat 5.0.24 and IE

2004-05-21 Thread Roy Gardner
Mark, First of all it is worth pointing out that this works quite happily for me on WinXP using TC5.0.24 and IE6. Ah, the wonderful world of M$. There are difference between how tomcat 4 and 5 handle redirection from www.yourhost.com/webdav to www.yourhost.com/webdav/ Either should be valid but

RE: webdav servlet problems with Tomcat 5.0.24 and IE

2004-05-21 Thread Mark Thomas
From: Roy Gardner [mailto:[EMAIL PROTECTED] Do you know how the TC4 handles the redirection issue? We have a webapp to which we are adding webdav support. Our webdav implementation has exactly the same problem as the TC5 implementation when using IE clients. If we set the url-pattern to

RE: webdav servlet problems with Tomcat 5.0.24 and IE

2004-05-20 Thread Mark Thomas
Roy, First of all it is worth pointing out that this works quite happily for me on WinXP using TC5.0.24 and IE6. There are difference between how tomcat 4 and 5 handle redirection from www.yourhost.com/webdav to www.yourhost.com/webdav/ Either should be valid but the webdav implementation in IE

RE: webdav and Tomcat 5.0 - is it bundled or not?

2003-12-22 Thread Shapira, Yoav
Howdy, I answered this question in a bit more detail last week, so you may want to search the archives (a generally good idea before posting). The WebDAV servlet is included with the tomcat distribution (and has been enhanced in fact for tomcat), $CATALINA_HOME/server/lib/servlets-webdav.jar.

RE: WebDAV - Missing WAR

2003-12-19 Thread Shapira, Yoav
Howdy, I understand that there's WebDAV support in Tomcat (v5), and I WebDAV support is also present in tomcat v4.x. understand that I need to deploy it via the tomcat manager. Problem You don't have to deploy it via the tomcat manager, but that's one easy option. is, I can't find the right

Re: WebDAV - Missing WAR

2003-12-19 Thread Mike Reed
On Dec 19, 2003, at 11:40 AM, Shapira, Yoav wrote: There's a webdav directory under the webapps directory in tomcat 4. In tomcat 5, see $CATALINA_HOME/server/lib/servlets-webdav.jar. There is no WAR file. I'm relatively new to the list, so if you'd be willing to cc: me directly on any replies,

Re: WebDAV - Missing WAR

2003-12-19 Thread Mike Reed
On Dec 19, 2003, at 11:40 AM, Shapira, Yoav wrote: is, I can't find the right source to deploy it from. There's no webdav.war file, and there's no webdav directory. I even re-downloaded the tomcat source to make sure I didnt' miss something in my install. There's a webdav directory under the

RE: WebDAV - Missing WAR

2003-12-19 Thread Shapira, Yoav
Howdy, Yes, I have this. And maybe I'm being too detailed, but I can't see where to deploy this at without a WAR file in Tomcat 5, at least not without a WAR file. I'm using Tomcat Manager to look at this - if there's another method, I'd certainly be open to hearing it. OK. In tomcat 4 there

Re: webdav - finding class files

2003-08-28 Thread Pike
Hi for the record to extend the WebdavServlet, I've copied servlet-common.jar servlet-default.jar servlet-webdav.jar and catalina.jar (oops) from the $/server/lib into my context's /WEB-INF/lib I had to add tomcat-util.jar too to do the same on

RE: Webdav and security

2003-08-28 Thread Duncan Strang
To: Tomcat Users List Subject: Re: Webdav and security Hi Duncan check this http://www.mail-archive.com/[EMAIL PROTECTED]/ msg101208.html see the http-method tags specified there ? if i get it right, you dont want to open the methods GET and POST for everyone, and after that, you want

Re: Webdav and security

2003-08-27 Thread Pike
Hi Duncan check this http://www.mail-archive.com/[EMAIL PROTECTED]/ msg101208.html see the http-method tags specified there ? if i get it right, you dont want to open the methods GET and POST for everyone, and after that, you want to restrict all methods (PUT,DELETE,PROPFIND,etc) to a certain

RE: Webdav and security

2003-08-27 Thread Duncan Strang
-Original Message- From: Pike [mailto:[EMAIL PROTECTED] Sent: 27 August 2003 00:37 To: Tomcat Users List Subject: Re: Webdav and security Hi Duncan check this http://www.mail-archive.com/[EMAIL PROTECTED]/ msg101208.html see the http-method tags specified there ? if i get

Re: Webdav and security

2003-08-27 Thread P . van Kemenade
Hi However it still lets anyone get a listing of all editable files by virtue of the fact that GET and POST methods have no constraints applied to them. hm .. you can turn of the listings in your web.xml servlet servlet-namebla/servlet-name servlet-classbla/servlet-class init-param

Re: webdav - finding class files

2003-08-27 Thread P . van Kemenade
Hi thanks,.. well, nothing. it just sounds very ugly, having the same jar files running twice in one tomcat, once in server/lib and once in common/lib. is this how its _normally_ done ? Alternatively, have you try putting it inside the /lib directory of your webapp? It will then only be

Re: WebDav

2003-03-03 Thread apaliwal
Hi, I am not familiar with webdav. What it, any links?? What your are trying to achieve is perfectly possible. I did something similar. First of all what sort of files you want to edit in webapps. They are JSPs and some other text file, as servlets class files are present, which you would

Re: WebDav

2003-03-03 Thread Erik Price
[EMAIL PROTECTED] wrote: Hi, I am not familiar with webdav. What it, any links?? http://webdav.org/ I got the latest version of Tomcat.It is on a Linux Box. I wanted to use webdav inorder to give our developers the ability to modify files in our webapps in Tomcat w/o having to login to the

RE: WebDav

2003-03-03 Thread Anthony Smith
I can't seem to copy jsp files from my webdav nor an I copy them to my webdav? DO you have this problem? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 11:39 AM To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: WebDav [EMAIL PROTECTED

Re: WebDav

2003-03-03 Thread Erik Price
Anthony Smith wrote: I can't seem to copy jsp files from my webdav nor an I copy them to my webdav? DO you have this problem? I don't use WebDAV with my servlet/JSP development. I was just suggesting a possible way to do it. Erik

Re: Webdav new directory refresh problem with tc-4.1.18

2003-01-14 Thread Zsolt Koppany
I forgot to notice, that the bug happens only when tomcat-4.1.18 under Windows-2000 runs and NOT under Linux. On Tue, 2003-01-14 at 12:37, Zsolt Koppany wrote: Hi, when I create a new directory from a webdav client (MS explorer), the new directory will be created but the client shows the new

Re: WebDav Problems

2003-01-13 Thread Olaf Jahn
Zsolt Koppany [EMAIL PROTECTED] hat geschrieben: Hi, I use tomcat-4.1.18 and have the following problems with webdav. The Windows Client (webdav folder) does not show the modification dates of the files neither over the list nor for properties [...] How can I get the date listed? In our

Re: WebDav Problems

2003-01-11 Thread Andreas Probst
Hi Zsolt, it might be, that it's a client problem, i.e. Webfolders isn't working correctly. I had issues with Webfolders of Windows 98. The same installation of Slide (which does WebDAV) worked on Windows 2000 Webfolders. Unfortunately I can't tell you more about this, it's just a thought.

Re: WebDav Problems

2003-01-11 Thread Zsolt Koppany
I have the problem under Windows-98 and 2000. If I understand you correctly you don't have this problem with tomcat and slide and the client it W-2000. Is that correct? Zsolt On Sat, 2003-01-11 at 15:37, Andreas Probst wrote: Hi Zsolt, it might be, that it's a client problem, i.e.

Re: WebDav Problems

2003-01-11 Thread Andreas Probst
Hi Zsolt, I don't see the dates on Win2k either. So I really think it's a client problem. I have also a web interface. It shows the dates correctly. I've never realized this problem, because I seldom test with webfolders and the date was always far right (outside the window) so I didn't see

Re: WebDav Problems (same problem + hint)

2003-01-11 Thread Stratmann, Holger
The second problem is that webdav does not work correctly (it gets problems with directory names) when I change its url mapping. Yes, I have the same problem and I really think it's a bug in the servlet. It doesn't seem to consider its url mapping internally (not at all or not correctly). I

RE: WebDav and Symbolic Links in 4.1.12!!!

2002-12-09 Thread Turner, John
As far as I know you have to go higher than 4.1.12, to .13 or .14, there's a bug with allowLinking. Check bugzilla, check the archives to be sure. John -Original Message- From: Paolo Scaffardi [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 8:03 AM To: [EMAIL PROTECTED]

Re: WebDav support -- what am I doing wrong?

2002-09-20 Thread Thomas T. Veldhouse
Responding to my own post. I am able to view the files in my webapp. I had to use the URL http://host:8080/mywebapp/ Apparently DreamWeaver adds the webdav onto the end of it by default. However, I am not able to write to the app. I have read-only set to false. I have a role setup and have

Re: Webdav servlet

2002-07-18 Thread August Detlefsen
I tried using the WebDAV servlet some time back, but it doesn't work as well as I'd hoped (at least, with DW UltraDev that my developers demanded). If you are using Apache-Tomcat you can try mod_webdav instead, though it requires a separate port for each virtual host. If you need, I can post the

Re: Webdav servlet

2002-07-18 Thread David Goodenough
On Thursday 18 July 2002 19:44, you wrote: I tried using the WebDAV servlet some time back, but it doesn't work as well as I'd hoped (at least, with DW UltraDev that my developers demanded). If you are using Apache-Tomcat you can try mod_webdav instead, though it requires a separate port for

Re: webdav over SSL with http-auth?

2002-03-11 Thread Aditya
It turned out that the problem fixed itself when I restarted tomcat. ugh. On Mon, Mar 11, 2002 at 12:54:52PM -0800, Aditya wrote: I'm trying to allow users to upload their files to their context via webdav on a Tomcat 4.0.2 server over SSL and with auth-constraints on who can upload stuff

Re: WebDAV (NEWBIE Question!)

2002-03-06 Thread Toru Watanabe
Hi! regarding WebDAV, you should see jakarta-slide project first. there are worth of FAQs about using WebDAV with tomcat. regards, Watanabe -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: webdav and tomcat 4.0

2001-03-13 Thread Mike Braden
Make sure you read the docs on WebDAV. I believe that it is setup in RO mode in the initial install, its been a while since I looked. Also, make sure you understand what supports WebDAV authoring. Here is another good resource if you don't already have it: http://www.webdav.org/

Re: webdav and tomcat 4.0

2001-03-13 Thread David Wall
I've been using Word 2k with WebDAV on apache web server with much success. (just a few glitches) Just note, that the Word docs are XHTML (word xml). So they tend to make the pages a little large. This works well for documentation, though, since you can read it in most browsers and edit

Re: webdav and tomcat 4.0 (fwd)

2001-03-13 Thread Remy Maucherat
I've been trying to create a new folder using the webdav servlet and tomcat 4.0 and MS WebFolders client. It won't allow me to create folders. Is this feature supported at this time. How well tested is the webdav servlet ? any info would be appreciated. Perhaps you didn't change the value

Re: WebDAV problems -- thank you

2000-11-10 Thread Ray Allis
Remy Maucherat wrote: First, thanks a lot to your log, since I found a bug into the Catalina's HTTP connector because of that :) I repeat, that looks like an opportunity for Microsoft to show good faith. Well, they've added and used and products huge I'm often annoyed at Microsoft