Re: How to use Slide with database for data storage?

2004-11-05 Thread Roman D
I tried everything. I sill get error \jakarta-slide\proposals\wck\src\org\apache\slide\simple\store\WebdavStoreMacroAdapter.java:31: package org.apache.commons.transaction.util.xa does not exist I tried building both with slide and without. The example at

WCK to servlet?

2004-11-05 Thread Roman D
Anyone have an actual example of WCK servlet, not org.apache.slide.simple.reference ? Similar to org.apache.slide.webdav.WebdavServlet but using the WCK. Or what is the correct practice to integrate org.apache.slide.simple.reference into servlet? Thanks.

Fw: Error while Configuring Oracle JDBC store for Slide 2.0

2004-11-05 Thread Karan Tyagi
Would appreciate any help on this .. - Forwarded by Karan Tyagi/Towers Perrin on 11/05/2004 10:37 AM - Karan Tyagi/Towers [EMAIL PROTECTED] 11/04/2004 02:01 PM Please respond to Slide Users Mailing List [EMAIL PROTECTED] To Slide Users Mailing List [EMAIL PROTECTED] cc Subject

Re: Domain.xml

2004-11-05 Thread Stefan Lützkendorf
No, we haven't any schema or dtd. Stefan BTW. Your recently wiki work is relly a nice starting point for better documentation (:-) Brian Lee wrote: Did the Slide team create an xml schema for the domain.xml file? It would make understanding it much easier

Re: Domain.xml

2004-11-05 Thread Brian Lee
Thanks man - I figured I can learn Slide better that way and help other people along the way Stefan Lützkendorf wrote: No, we haven't any schema or dtd. Stefan BTW. Your recently wiki work is relly a nice starting point for better documentation (:-) Brian Lee wrote: Did the Slide team create an

Retrieving XML Output

2004-11-05 Thread Tim Frank
I was poking around through the WebDAV RFC yesterday to piece together some ideas for building a frontend application. I was doing some manual requests via telnet to probe the various capabilities of slide yesterday and was happy with the various reports that I could retrieve with various

Re: How to use Slide with database for data storage?

2004-11-05 Thread Brian Lee
To save myself some config headaches - I downloaded the slide tomcat bundle -there's one for the 2.1b2 release under milestone builds Roman D wrote: I tried everything. I sill get error \jakarta-slide\proposals\wck\src\org\apache\slide\simple\store\WebdavStoreMacroAdapter.java:31: package

Turning security off

2004-11-05 Thread John Gilbert
Based on the following page (http://jakarta.apache.org/slide/howto-acl.html) I need to turn off security in the web.xml and slide.properties files. Is it possible to leave security turned on for the web container (i.e. web.xml) but turn off security with in Slide? I tried this but got denied.

RE: Jboss howto

2004-11-05 Thread John Gilbert
Check out the wiki. There is a piece on configuration in jboss. -Original Message- From: Richard Emberson [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 4:20 PM To: Slide Users Mailing List Subject: Jboss howto Is there a Jboss howto for Slide. I'd like to run it in Jboss.

Re: Slide 2.1b2 Tomcat bundle Mac Errors

2004-11-05 Thread Oliver Zeigermann
;) Oliver. On Thu, 04 Nov 2004 19:34:08 -0800, James Mason [EMAIL PROTECTED] wrote: On Thu, 2004-11-04 at 23:16 +0100, Oliver Zeigermann wrote: With the latest version from Slide HEAD or release branch with a fresh PUT? Can anyone confirm that? Oliver P.S.: Need to get myself a

Re: How to use Slide with database for data storage?

2004-11-05 Thread Oliver Zeigermann
You can build to both the Slide CVS Head as well as the the 2.1 releases. 2.1 does not contain the macro store suff, so supports.macro.store should be commented out. You will have to set the right Slide version as well to identify the right jars. To compile to 2.1b2 you properties should contain

Re: Domain.xml

2004-11-05 Thread Oliver Zeigermann
Great, I really appreciate this :) Oliver On Fri, 05 Nov 2004 10:58:11 -0800, Brian Lee [EMAIL PROTECTED] wrote: Thanks man - I figured I can learn Slide better that way and help other people along the way Stefan Lützkendorf wrote: No, we haven't any schema or dtd. Stefan

Re: WebdavFileStore javadoc

2004-11-05 Thread Oliver Zeigermann
Hihi, evil copy-paste-man, which is me, has made one more mistake, the second version should be objectnode classname=org.apache.slide.structure.SubjectNode uri=/files without the property. I will fix this, thanks for finding out... Oliver On Thu, 04 Nov 2004 16:25:20 -0800, Brian Lee [EMAIL

Re: Turning security off

2004-11-05 Thread Oliver Zeigermann
Should be possible as this is an option for WCK. What kind of problems are you experiencing? Oliver On Fri, 5 Nov 2004 15:09:05 -0500, John Gilbert [EMAIL PROTECTED] wrote: Based on the following page (http://jakarta.apache.org/slide/howto-acl.html) I need to turn off security in the web.xml

Re: WCK to servlet?

2004-11-05 Thread Oliver Zeigermann
WCK makes use of org.apache.slide.webdav.WebdavServlet as it makes use of the whole and complete Slide thing. Using WCK with Slide will be configured in the Domain.xml. Have a look at the Domain.xml provided with the WCK. Oliver On Fri, 05 Nov 2004 17:19:34 +0200, Roman D [EMAIL PROTECTED]

Re: how to get the folder structure ?

2004-11-05 Thread lixin chu
Is this the right way to get/build folder structure for View layer in a typical web application ? I tried, it took 2659ms with the default slide 2.1B2 configuration. class BuildFolderStructure { ... public BuildFolderStructure () { // get tht root node FolderNode = new FolderNode(slide,0);

Re: DB2 deadlock committing transaction

2004-11-05 Thread Oliver Zeigermann
Hasn't Stefan fixed this problem in Slide 2.1b2? Which version are you using? Oliver On Fri, 5 Nov 2004 08:52:52 -0800, Warwick Burrows [EMAIL PROTECTED] wrote: Hi guys, I've just added transaction support into my WebDAV client based app using the WebdavResource transaction methods. But

Re: Domain.xml

2004-11-05 Thread James Mason
Me as well. Thanks for doing this Brian. -James On Fri, 2004-11-05 at 22:36 +0100, Oliver Zeigermann wrote: Great, I really appreciate this :) Oliver On Fri, 05 Nov 2004 10:58:11 -0800, Brian Lee [EMAIL PROTECTED] wrote: Thanks man - I figured I can learn Slide better that way and

Re: Retrieving XML Output

2004-11-05 Thread James Mason
For Cocoon you can have a look at the HttpProxyGenerator and WebServicesProxyGenerator. Be aware that neither of them support BASIC http authentication (as far as I can tell), but adding support for that shouldn't be too hard. From there you should be able to get the XML with ease :). I'm not sure