Thanks Remy,
For DAV:resourcetype
Another question:
After using propFindMethod.getResponseProperties(url), For the property
resourcetype, The getPropertyAsString() method gives "" even for collection
resource type.
the reply xml fragment is :
<D:resourcetype xmlns:D="DAV:"><collection></collection></D:resourcetype>
Could we find a way to distinguish collection and noncollection based on
using propFindMethod?
I am using slide milestone 7 code by the way.
Thanks
-----Original Message-----
From: Remy Maucherat [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 07, 2001 7:12 PM
To: [EMAIL PROTECTED]
Subject: Re: Question on propfind
> Hi,
> Using slide client library, When we run a PropFindMethod, After we get
the
> response, I know there must have a way to get all the properties for each
> response uris. Does anybody know how to do it?
After executing the request, call getAllResponseURLs(), then call
getResponseProperties(String urlPath) with one of the elements of the
enumeration returned as a parameter.
It will return an enumeration of all the properties returned for that url.
Remy