Re: Seeking java example querying slide

2004-11-15 Thread Mirko Froehlich
The Wiki is pretty helpful. This document explains how to create a WebdavResource, which represents a folder or document in your repository: Once you have this, you can do all kinds of things. Like I said, if all you wan to do is get the

Re: Seeking java example querying slide

2004-11-15 Thread Phillip Rhodes
That solution sounds like the best way to go. Is anyone anywhere of a example program that does a PROPFIND operation? Since I am new to this, it would be hard to pull a working program just using the javadocs. Thanks. Mirko Froehlich wrote: If all you want to do is enumerate the contents of a

Re: Seeking java example querying slide

2004-11-15 Thread Mirko Froehlich
If all you want to do is enumerate the contents of a folder, a DASL search seems like overkill. A simple PROPFIND operation should suffice. If you use the Slide WebDAV client library, the easiest way to do this seems to be to call WebdavResource.listWebdavResources(), which returns an array of chil

Re: Seeking java example querying slide

2004-11-15 Thread Tim Frank
Phillip, Here is an example DASL query from the Wiki pages: http://wiki.apache.org/jakarta-slide/DASLSearch Someone else might know another way. Tim Phillip Rhodes wrote on 15/11/04 01:33 PM: I want to connect to slide using a Java API and find out for a given folder, the contents within it (othe

Seeking java example querying slide

2004-11-15 Thread Phillip Rhodes
I want to connect to slide using a Java API and find out for a given folder, the contents within it (other folders and files). I would like to use slide as an image repository and create some a database record for each image that is found in the dav server. I was hoping someone can point me