IndianAtTech wrote:
Oh, I See.

Actually I am working on Microsoft server related project only. BTW,
what is the standard DASL query, if I need to get the results??

Thanks
Sudhakar

Should be something like:

<d:searchrequest xmlns:d="DAV:">
  <d:basicsearch>
    <d:select>
      <d:prop><d:displayname/></d:prop>
    </d:select>
    <d:from>
      <d:scope>
        <d:href>/users/</d:href>
        <d:depth>infinity</d:depth>
      </d:scope>
    </d:from>
    <d:where>
      <d:is-collection/>
    </d:where>
  </d:basicsearch>
</d:searchrequest>

Note that the check for DAV:ishidden=false in general will not do what you want, because it's a MS-proprietary property (which shouldn't use the DAV: namespace...) and thus won't exist on most other servers.

Best regards, Julian

--
<green/>bytes GmbH -- http://www.greenbytes.de -- tel:+492512807760

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to