G
George Durzi
If I use this WebDAV request to extract one property from Contact, it works
ok.
<?xml version="1.0"?>
<aropfind xmlns:a="DAV:" xmlns:b="urn:schemas:contacts:"
xmlns:c="http://schemas.microsoft.com/mapi/proptag/"
xmlns:d="http://schemas.microsoft.com/mapi/">
<arop>
<b:givenName/>
</arop>
</aropfind>
However, I'd like to use <allprop/> instead of actually manually writing
each property into the request. When my request looks like this, I get a 401
(Bad Request) exception.
<?xml version="1.0"?>
<aropfind xmlns:a="DAV:" xmlns:b="urn:schemas:contacts:"
xmlns:c="http://schemas.microsoft.com/mapi/proptag/"
xmlns:d="http://schemas.microsoft.com/mapi/">
<b:allprop/>
</aropfind>
What am I doing wrong? Thank you
ok.
<?xml version="1.0"?>
<aropfind xmlns:a="DAV:" xmlns:b="urn:schemas:contacts:"
xmlns:c="http://schemas.microsoft.com/mapi/proptag/"
xmlns:d="http://schemas.microsoft.com/mapi/">
<arop>
<b:givenName/>
</arop>
</aropfind>
However, I'd like to use <allprop/> instead of actually manually writing
each property into the request. When my request looks like this, I get a 401
(Bad Request) exception.
<?xml version="1.0"?>
<aropfind xmlns:a="DAV:" xmlns:b="urn:schemas:contacts:"
xmlns:c="http://schemas.microsoft.com/mapi/proptag/"
xmlns:d="http://schemas.microsoft.com/mapi/">
<b:allprop/>
</aropfind>
What am I doing wrong? Thank you