DASL Possibilities ... (Help)

2004-12-29 Thread Cédric
Hi ! I'm a newbies in Slide, and i want to know more about the DASL possibilities. Is it possible to Search by multi criterials like : Date , Content , folders ... ect ! Where can i find more information about DASL ? Exemple code ? Is DASL appropriate to search in a folders with lots of

Re: DASL Possibilities ... (Help)

2004-12-29 Thread Stefan Lützkendorf
general info you can find under http://greenbytes.de/tech/webdav/draft-reschke-webdav-search-latest.html. There you can read aboud a basicsearch query, which is quite similar to sql. The wehre clause of such a query allows boolean combinations of different criteria (metadata and content).

command line client scripting and wildcard support

2004-12-29 Thread Mike Perham
I need to automate the download and deletion of files from a remote WebDAV site. I'd like to use a command line client with a simple script to do this but the 2.0 client does not support wildcards. Does anyone have any suggestions about available tools out there to perform this task? mike

Re: command line client scripting and wildcard support

2004-12-29 Thread Stefan Lützkendorf
there are some ant tasks which may be usefull in automation if you want to use ant. Stefan Mike Perham wrote: I need to automate the download and deletion of files from a remote WebDAV site. I'd like to use a command line client with a simple script to do this but the 2.0 client does not

RE: command line client scripting and wildcard support

2004-12-29 Thread Mike Perham
I don't see any documentation whatsoever on the slide site about these tasks and what they do. I will download the tasks and see if the docs are included. Thanks. -Original Message- From: Stefan Lützkendorf [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 29, 2004 9:51 AM To:

getCreationDate -- broken?

2004-12-29 Thread Roy Russo
Using 2.1b. Is this method call broken? long lCreated = wdResource.getCreationDate(); Seems like I it always returns 0. DavExplorer is showing the value is set for the resource. Is there another way I can get this value for a specific file? Roy Russo JBoss Portal Developer JBoss, Inc.

RE: command line client scripting and wildcard support

2004-12-29 Thread Mike Perham
Has anyone tested the ant tasks with https? It does not seem to work for me: org.apache.commons.httpclient.URIException: wrong class use at org.apache.commons.httpclient.HttpsURL.checkValid(HttpsURL.java:454) at org.apache.commons.httpclient.HttpsURL.init(HttpsURL.java:110) at

Re: getCreationDate -- broken?

2004-12-29 Thread Eirikur Hrafnsson
This is the same question I asked a few weeks ago and did not get any response... On 29.12.2004, at 16:27, Roy Russo wrote: Using 2.1b. Is this method call broken? long lCreated = wdResource.getCreationDate(); Seems like I it always returns 0. DavExplorer is showing the value is set for the

Re: command line client scripting and wildcard support

2004-12-29 Thread Stefan Lützkendorf
can you try an absolute uri at the dir attribte of the davfileset? e.g. davfileset dir=${url} Stefan Mike Perham wrote: Has anyone tested the ant tasks with https? It does not seem to work for me: org.apache.commons.httpclient.URIException: wrong class use at

Re: getCreationDate -- broken?

2004-12-29 Thread Stefan Lützkendorf
Roy Russo wrote: Using 2.1b. Is this method call broken? long lCreated = wdResource.getCreationDate(); I've currently no idea why getCreationDate does not work. Seems like I it always returns 0. DavExplorer is showing the value is set for the resource. Is there another way I can get this value

Re: getCreationDate -- broken?

2004-12-29 Thread Roy Russo
thanks. alt-2 is what I was looking for. Roy Russo JBoss Portal Developer JBoss, Inc. - Original Message - From: Stefan Lützkendorf [EMAIL PROTECTED] To: Slide Users Mailing List slide-user@jakarta.apache.org Sent: Wednesday, December 29, 2004 12:47 PM Subject: Re: getCreationDate --

WebdavResource getChildResources() : Directory Listing

2004-12-29 Thread Robert r. Sanders
I don't know how much support the WebDAV client lib has for being a generic WebDAV tool; but I am trying to use it as such. Currently I am trying to connect to a Subversion server over WebDAV and list all resources in a collection/directory; the code is: WebdavResource resource = new

Using Slide the first time

2004-12-29 Thread Hung Phan
Hi all, This is the first time I've tried to use Slide. And I would like to have some help. I have Tomcat 4.1.31 running on my machine. I've downloaded the Slide server component (jakarta-slide-server-bin-2.1.zip). I got slide.war and dropped it into Tomcat /webapp and restarted it.

Slide CVS/SVN

2004-12-29 Thread rtjohan
Hello all, Just came across Slide since considering using a few Apache systems like Lenya / Cocoon / Jetspeed. Seems Slide has support for version control, so wondering if Slide is considered an alternative to CVS or SVN/Subversion. When should Slide be used, and when should CVS or SVN be

Re: Using Slide the first time

2004-12-29 Thread Robert r. Sanders
What do you see when you try to load the web app? Are you getting any logs? Its kind of unclear what you are asking. P.S. The only way to open a 'real' WebDAV connection from a web browser (IE only) is to using something like: a style=behavior: url(#default#AnchorClick); href=#

Re: Using Slide the first time

2004-12-29 Thread Robert r. Sanders
Not a slide expert myself; but I do believe that it is going to take some configuration. Take a look at the Adminstrators Guide from: http://jakarta.apache.org/slide/installation.html Hung Phan wrote: Hi Robert: I pasted the error log from a Tomcat startup window at the bottom. To make it

Re: Using Slide the first time

2004-12-29 Thread James Mason
Also take a look at http://jakarta.apache.org/slide/howto-jaas.html if you want to enable authentication (it sounds like you do). -James On Wed, 2004-12-29 at 19:06 -0600, Robert r. Sanders wrote: Not a slide expert myself; but I do believe that it is going to take some configuration. Take a

Re: WebdavResource getChildResources() : Directory Listing

2004-12-29 Thread James Mason
Can you post traces for the request and response? It might also be useful to compare the request/response when using the svn client. -James On Wed, 2004-12-29 at 17:54 -0600, Robert r. Sanders wrote: I don't know how much support the WebDAV client lib has for being a generic WebDAV tool; but

Re: Slide CVS/SVN

2004-12-29 Thread James Mason
If the key feature you're needing is a revision control system, go with Subversion (or CVS if you must). Slide was designed to be a WebDAV-enabled content management system. It brings a lot more features to the table than either SVN or CVS (DASL, ACLs, BINDing), but the version control pieces are

Re: WebdavResource getChildResources() : Directory Listing

2004-12-29 Thread Carlos Villegas
Subversion doesn't implement all of WebDAV, just what the svn client needs and most of svn functionality is done through a custom (but within the spec) report method. More complete generic WebDAV support is planned for future versions. Maybe the slide client is expecting some response not yet

Slide/WCK does not run if included into a project/classpath

2004-12-29 Thread chilydev
Hello, I'm trying to implement WCK to use the Slide server functionality. I've included the Slide CVS project in my Eclipse workspace as described in http://jakarta.apache.org/slide/getting-started.html and finally got it to build. Then I've managed to do the building and deploying from CVS

Re: WebdavResource getChildResources() : Directory Listing

2004-12-29 Thread James Mason
Well, based on the traces this certainly looks like a bug in the Slide client library. Maybe it's getting confused by the duplicate namespaces, or as you suggested, maybe it's dependent on a property Subversion isn't returning. -James On Wed, 2004-12-29 at 21:24 -0600, Robert r. Sanders wrote:

Re: Slide/WCK does not run if included into a project/classpath

2004-12-29 Thread James Mason
Tomcat has its own classloader that will load any .class file under your_webapp/WEB-INF/classes and any .jar file under your_webapp/WEB-INF/lib in to the classpath of your_webapp. To include your classes in the sample application, either put your .class files into slide/WEB-INF/classes or build a