1 Jun 07:01
1 Jun 22:55
Verify date of last release
Darren Hartford <dhartford <at> ghsinc.com>
2006-06-01 20:55:00 GMT
2006-06-01 20:55:00 GMT
I was asked when the last official release date of Jakarta Slide was (I've been building from source for over a year and were concerned about production quality). From my sources, it looks like: December 2004 - Jakarta Slide 2.1 Does this sound correct? -D
1 Jun 22:58
RE: Verify date of last release
Pankaj Mandal -X (pmandal - Ahura Inc. at Cisco <pmandal <at> cisco.com>
2006-06-01 20:58:41 GMT
2006-06-01 20:58:41 GMT
I think if sources are checked out from svn, then version is 2.2 I checked out about a month earlier Pankaj -----Original Message----- From: Darren Hartford [mailto:dhartford <at> ghsinc.com] Sent: Thursday, June 01, 2006 1:55 PM To: Slide Users Mailing List Subject: Verify date of last release I was asked when the last official release date of Jakarta Slide was (I've been building from source for over a year and were concerned about production quality). From my sources, it looks like: December 2004 - Jakarta Slide 2.1 Does this sound correct? -D --------------------------------------------------------------------- To unsubscribe, e-mail: slide-user-unsubscribe <at> jakarta.apache.org For additional commands, e-mail: slide-user-help <at> jakarta.apache.org
2 Jun 11:27
RE: Verify date of last release
Miguel Figueiredo <mfigueiredo <at> maisis.pt>
2006-06-02 09:27:06 GMT
2006-06-02 09:27:06 GMT
Hello Darren, that's correct. Best regards, Miguel -----Original Message----- From: Darren Hartford [mailto:dhartford <at> ghsinc.com] Sent: quinta-feira, 1 de Junho de 2006 21:55 To: Slide Users Mailing List Subject: Verify date of last release I was asked when the last official release date of Jakarta Slide was (I've been building from source for over a year and were concerned about production quality). >From my sources, it looks like: December 2004 - Jakarta Slide 2.1 Does this sound correct? -D --------------------------------------------------------------------- To unsubscribe, e-mail: slide-user-unsubscribe <at> jakarta.apache.org For additional commands, e-mail: slide-user-help <at> jakarta.apache.org
3 Jun 10:46
Simplest possible servlet implementation
Jeroen Kransen <jfk_75 <at> yahoo.com>
2006-06-03 08:46:37 GMT
2006-06-03 08:46:37 GMT
I am trying to find the easiest way to make my own Webdav servlet. I looked into the WebdavServlet that ships with Tomcat, but found out there's no easy way to subclass it. I looked into slide, found the "WebDAV Construction Kit" (WCK) as an attempt to make things easier, but honestly this still looks to bothersome to me. Is there a servlet I can extend, overriding the do* methods for all WebDAV specific methods (doCopy, doDelete, ...), just like one would extend HttpServlet? Preferably with the difference that the data is already passed as a method parameter :) Jeroen __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
2 Jun 17:35
Request content missing in propfindMethod when constructing WebdavResource
Robert Geisler <geislerr <at> gmx.de>
2006-06-02 15:35:57 GMT
2006-06-02 15:35:57 GMT
Hi,
I have a problem with the WebDavClient Library. When trying to construct a WebdavResource, I get an Exception:
Code:
HttpURL url = new HttpURL("http://myserver:8080/slide/");
url.setUserinfo("user", "pwd");
WebdavResource wdr = new WebdavResource(url);
Client Exception:
org.apache.commons.httpclient.HttpException
at org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavResource.java:3467)
at org.apache.webdav.lib.WebdavResource.propfindMethod(WebdavResource.java:3423)
at org.apache.webdav.lib.WebdavResource.setNamedProp(WebdavResource.java:967)
at org.apache.webdav.lib.WebdavResource.setBasicProperties(WebdavResource.java:912)
at org.apache.webdav.lib.WebdavResource.setProperties(WebdavResource.java:1894)
at org.apache.webdav.lib.WebdavResource.setHttpURL(WebdavResource.java:1301)
at org.apache.webdav.lib.WebdavResource.<init>(WebdavResource.java:275)
Server Exception:
http-8080-Processor25, 02-Jun-2006 11:54:44, root, PROPFIND, 400 "Bad Request",
"Bad Request: Request content missing", 0 ms, /
Client: Jakarta WebDav Client 2.1
Server: jakarta-slide-2.1-tomcat-5.0.28
I found an issue in the slide bugzilla (http://issues.apache.org/bugzilla/show_bug.cgi?id=39220),
but the proposed patch did not solve the problem.
(Continue reading)
7 Jun 05:23
about subscribe
Dongdong Chen <dongdong.chen <at> avenit.de>
2006-06-07 03:23:15 GMT
2006-06-07 03:23:15 GMT
Hi all, I subscribe a file in Move, Delete and Update. But After I move the file to other folder, I get the notification result is Update and Delete. And then I delete the file; however I get no notification about this file. Can someone give me any hint? Slide version: jarkata_slide_2.2_bcs_4_9_7 Best regards, Dongdong Chen 2006.06.07
7 Jun 18:20
RE: Simplest possible servlet implementation
Max Pfingsthorn <m.pfingsthorn <at> hippo.nl>
2006-06-07 16:20:19 GMT
2006-06-07 16:20:19 GMT
Hi, could this be useful to you? http://could.it/main/a-simple-approach-to-webdav.html Bye, max > -----Original Message----- > From: Jeroen Kransen [mailto:jfk_75 <at> yahoo.com] > Sent: Saturday, June 03, 2006 10:47 > To: slide-user <at> jakarta.apache.org > Subject: Simplest possible servlet implementation > > > I am trying to find the easiest way to make my own Webdav > servlet. I looked into the WebdavServlet that ships with > Tomcat, but found out there's no easy way to subclass it. I > looked into slide, found the "WebDAV Construction Kit" (WCK) > as an attempt to make things easier, but honestly this still > looks to bothersome to me. Is there a servlet I can extend, > overriding the do* methods for all WebDAV specific methods > (doCopy, doDelete, ...), just like one would extend > HttpServlet? Preferably with the difference that the data is > already passed as a method parameter :) > > Jeroen > > __________________________________________________ > Do You Yahoo!?(Continue reading)
8 Jun 00:38
RE: Simplest possible servlet implementation
Gabriel Bermudez <elgabo81 <at> gmail.com>
2006-06-07 22:38:34 GMT
2006-06-07 22:38:34 GMT
If I could simply install it on a JBoss App Server, yes. I'll try and tell you El mié, 07-06-2006 a las 18:20 +0200, Max Pfingsthorn escribió: > Hi, > > could this be useful to you? > http://could.it/main/a-simple-approach-to-webdav.html > > Bye, > max > > > -----Original Message----- > > From: Jeroen Kransen [mailto:jfk_75 <at> yahoo.com] > > Sent: Saturday, June 03, 2006 10:47 > > To: slide-user <at> jakarta.apache.org > > Subject: Simplest possible servlet implementation > > > > > > I am trying to find the easiest way to make my own Webdav > > servlet. I looked into the WebdavServlet that ships with > > Tomcat, but found out there's no easy way to subclass it. I > > looked into slide, found the "WebDAV Construction Kit" (WCK) > > as an attempt to make things easier, but honestly this still > > looks to bothersome to me. Is there a servlet I can extend, > > overriding the do* methods for all WebDAV specific methods > > (doCopy, doDelete, ...), just like one would extend > > HttpServlet? Preferably with the difference that the data is > > already passed as a method parameter :) > >(Continue reading)
9 Jun 23:56
binary distribution woes, websphere 5.1
garry espe <garry.espe <at> chsinc.com>
2006-06-09 21:56:11 GMT
2006-06-09 21:56:11 GMT
All right. I admit defeat. I have spent hours stretching into days trying to get the binary distribution of slide.war working on websphere 5.1. The slide server starts fine, and I can see the file system using my desktop Win XP's "My Network Places" mapping technique. I am simply unable to copy a file to any of the directories -- files/, workspace/, and so on. The slide.log file offers this message: Servlet.Engine.Transports : 0, 09-Jun-2006 14:57:59, unauthenticated, PUT, 403 "Forbidden", 15 ms, / I have configured the application to use the PARENT_LAST value for the classloader mode, and to use APPLICATION for the WAR classloader policy. Following the jakarta slide guidelines, I have set authentication to false in the slide.properties file, and I have made sure these elements are commented out: /web-app/security-constraint and /web-app/login-config I have even tried to turn authentication on, and the results are the same. Moreover I am not prompted to supply an ID and password. I am missing something simple, right? Any help would be greatly appreciated. Garry
RSS Feed