Re: WebdavServlet protected resources cannot be opened in Word

2023-05-25 Thread Christopher Schultz
All, On 5/24/23 07:17, Mark Thomas wrote: On 24/05/2023 08:03, Кирилл Бубович wrote: We use webdav servlet to enable editing docx documents. We also use the |ms-word:ofe|u|https://www.example.com/d

Re: WebdavServlet protected resources cannot be opened in Word

2023-05-25 Thread Кирилл Бубович
mbH) > : > >> Hello, >> >> > -Ursprüngliche Nachricht- >> > Von: Mark Thomas >> > Gesendet: Mittwoch, 24. Mai 2023 13:18 >> > An: users@tomcat.apache.org >> > Betreff: Re: WebdavServlet protected resources cannot be opened in Word >&g

Re: WebdavServlet protected resources cannot be opened in Word

2023-05-25 Thread Кирилл Бубович
in for your answers! ср, 24 мая 2023 г. в 14:59, Thomas Hoffmann (Speed4Trade GmbH) : > Hello, > > > -Ursprüngliche Nachricht- > > Von: Mark Thomas > > Gesendet: Mittwoch, 24. Mai 2023 13:18 > > An: users@tomcat.apache.org > > Betreff: Re: WebdavServl

AW: WebdavServlet protected resources cannot be opened in Word

2023-05-24 Thread Thomas Hoffmann (Speed4Trade GmbH)
Hello, > -Ursprüngliche Nachricht- > Von: Mark Thomas > Gesendet: Mittwoch, 24. Mai 2023 13:18 > An: users@tomcat.apache.org > Betreff: Re: WebdavServlet protected resources cannot be opened in Word > > On 24/05/2023 08:03, Кирилл Бубович wrote: > > We use

Re: WebdavServlet protected resources cannot be opened in Word

2023-05-24 Thread Mark Thomas
On 24/05/2023 08:03, Кирилл Бубович wrote: We use webdav servlet to enable editing docx documents. We also use the |ms-word:ofe|u|https://www.example.com/document.docx

WebdavServlet protected resources cannot be opened in Word

2023-05-24 Thread Кирилл Бубович
We use webdav servlet to enable editing docx documents. We also use the ms-word:ofe|u| https://www.example.com/document.docx scheme in our application to be able to edit documents. The Office URI Schem

Re: WebdavServlet custom directory

2009-07-15 Thread Mark Thomas
> --- Original Message --- > From: Serge Fonville > To: Tomcat Users List > Sent: 15/07/09, 08:26:20 > Subject: WebdavServlet custom directory > > Hi, > > I am currently in the process of setting up a webdav resource on >

WebdavServlet custom directory

2009-07-15 Thread Serge Fonville
Hi, I am currently in the process of setting up a webdav resource on glassfish. I noticed it uses org.apache.catalina.servlets.WebdavServlet . I was wondering if it was possible to define a different source directory for all the files. I do not want to share the webapp dir. Is this at all possibl

Re: WebdavServlet + custom DirContext = unexpected behaviour

2009-02-15 Thread Mark Thomas
Stephen Winnall wrote: > On 14 Feb 2009, at 21:04, Mark Thomas wrote: > >> Stephen Winnall wrote: >>> >>> >>> >>> >> type="javax.sql.DataSource" >>> driverClassName="org.postgresql.Driver" >>> url="..." >>> username="..." password="..." maxActive="20" maxIdle="10" >>>

Re: WebdavServlet + custom DirContext = unexpected behaviour

2009-02-15 Thread Stephen Winnall
On 14 Feb 2009, at 21:04, Mark Thomas wrote: Stephen Winnall wrote: If you replace the DirContext implementation, Tomcat will look in your database for WEB-INF/web.xml which is where the WebDAV servlet needs to be defined. Did you include this resource (and any other required WEB-

Re: WebdavServlet + custom DirContext = unexpected behaviour

2009-02-14 Thread Mark Thomas
Stephen Winnall wrote: > Can anyone help me with this? I'm completely stuck! > > I have a Tomcat 6.0.18 installation with WebdavServlet enabled. If I use > the following file, WebDAV works OK: > > > type="javax.sql.DataSource" >

Re: WebdavServlet + custom DirContext = unexpected behaviour

2009-02-13 Thread Stephen Winnall
Can anyone help me with this? I'm completely stuck! I have a Tomcat 6.0.18 installation with WebdavServlet enabled. If I use the following file, WebDAV works OK: type="javax.sql.DataSource" driverClassName="org.postgresql.Driver" ur

Re: WebdavServlet + custom DirContext = unexpected behaviour

2009-02-13 Thread Stephen Winnall
Thanks for your feedback. On 13 Feb 2009, at 05:04, Caldarale, Charles R wrote: From: Stephen Winnall [mailto:st...@winnall.ch] Subject: WebdavServlet + custom DirContext = unexpected behaviour My Tomcat is as installed by NetBeans 6.5, that is with a separate CATALINA_HOME and CATALINA_BASE

RE: WebdavServlet + custom DirContext = unexpected behaviour

2009-02-12 Thread Caldarale, Charles R
> From: Stephen Winnall [mailto:st...@winnall.ch] > Subject: WebdavServlet + custom DirContext = unexpected behaviour > > My Tomcat is as installed by NetBeans 6.5, that is > with a separate CATALINA_HOME and CATALINA_BASE. I'd strongly recommend that you first learn how to

WebdavServlet + custom DirContext = unexpected behaviour

2009-02-12 Thread Stephen Winnall
I'm developing my first ever servlet for Tomcat 6.0.18 under Mac OS X 10.5.6 with Java 1.5.0_16. I've used Tomcat a lot with Cocoon and I know Java reasonably well. I'd like to extend the standard WebdavServlet that comes with Tomcat to access data from a relational data

RE: WebdavServlet

2007-07-01 Thread Caldarale, Charles R
> From: Robert J. Carr [mailto:[EMAIL PROTECTED] > Subject: Re: WebdavServlet > > > Mapping it to /edit/* allows the content to be exposed at an > > alternative url. > > Sure, but the content exposed would still be the "whole of > the webapp", right?

Re: WebdavServlet

2007-06-30 Thread Robert J. Carr
Hey Mark- Thanks for the quick reply, and what you're saying confirms my assumption that the filter solution that is provided isn't going to work for me. However, I claim that the initial bug report is *exactly* the problem I'm having. If the filter solution doesn't address the problem, then wh

Re: WebdavServlet

2007-06-30 Thread Mark Thomas
Robert J. Carr wrote: > I'd like to add the webdav servlet to my own web application. I can > do this and it works, but it treats the root of my webapp as the root > of the dav share. The way the webdav servlet is written, it exposes the whole of the webapp. Mapping it to /edit/* allows the conte

WebdavServlet

2007-06-29 Thread Robert J. Carr
I'd like to add the webdav servlet to my own web application. I can do this and it works, but it treats the root of my webapp as the root of the dav share. I would like to have my webapp do more than webdav, so I was hoping I could specify that only a portion of my webapp is visible to dav. I i

Re: Own implementation WebdavServlet

2006-06-05 Thread Jon Wingfield
7;t find where it is set. Can anybody help me with this? Why is it the DefaultServlet, and its subclass WebdavServlet can find it, but my own subclass with exactly the same code can't? Has anybody successfully made an own implemen

Own implementation WebdavServlet

2006-06-02 Thread jeroen
ibute "org.apache.catalina.resources", but I can't find where it is set. Can anybody help me with this? Why is it the DefaultServlet, and its subclass WebdavServlet can find it, but my own subclass with exactly the same code can't? Has anybody successfully made an own implemen

Re: WebdavServlet

2006-04-01 Thread Mark Thomas
jirina wrote: > Hello, is it posible to found somewhere source-code of WebdavServlet, which > is in Tomcat's webapp?? > Thanks, Jiri This information is easily obtained from the Tomcat web site. There really is no good reason why you couldn't find this yourself. It would

WebdavServlet

2006-04-01 Thread jirina
Hello, is it posible to found somewhere source-code of WebdavServlet, which is in Tomcat's webapp?? Thanks, Jiri - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

caldav implementation in webdavServlet

2006-03-22 Thread jirina
ow to work with servlet container or how to expand WebdavServlet to make some interface to recognize CalDAV requests or if you know about some useful links I would be very grateful to you. - To unsubscribe, e-mail: [EMAIL PROT

5.5, WebdavServlet and getResources

2006-02-15 Thread Tore Halset
Hello. I am upgrading my WebdavServlet subclass to tomcat-5.5. I used to override getResources() to return a custom DirContext, but getResources are gone in version 5.5. How can I provide a custom DirContext? Regards, - Tore