Hi,
I am attempting to do a search where i list the contents of a directory, much like listContents but with DASL
I am ordering by resourcetype and then displayname using the XML below, however it does not seem to order at all.
Has anyone got a better example'dir' list or any idea why my ordering is not working.
Cheers
Paul.
"<D:searchrequest xmlns:D =\"DAV:\">" +
"<D:basicsearch>" +
"<D:select>" +
"<D:allprop/>" +
"</D:select>" +
"<D:from>" +
"<D:scope>" +
"<D:href>LOCATION</D:href>" +
"<D:depth>1</D:depth>" +
"</D:scope>" +
"</D:from>" +
"</D:basicsearch>" +
"<D:orderby>" +
"<D:order>" +
"<D:prop>" +
"<D:resourcetype/>" +
"</D:prop>" +
"<D:ascending/>" +
"</D:order>" +
"<D:order>" +
"<D:prop>" +
"<D:displayname/>" +
"</D:prop>" +
"<D:ascending/>" +
"</D:order>" +
"</D:orderby>" +
"</D:searchrequest>";
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
