vzent 0 Newbie Poster

Hi,

Does anyone has experience in using WebDAV in PHP to connect to Exchanger server 2003, i have found some code on the internet, and downloaded Exchange SDK for further development.

However, i have problem constructing the XML query to query to Exchange server. I am trying to display the "text" (urn:schemas:httpmail:textdescription) of the email item in Exchange.

I can retrieve all the properties for the email item based on the following code:

$h->xmlrequest = '<?xml version="1.0"?>';
$h->xmlrequest .= <<<END
<a:propfind xmlns:a="DAV:" >
    <a:allprop/>
</a:propfind>
END;

However, i would just want to retrieve the "text" out of all properties. Does anyone has experience in doing this ? I need your expertise, thanks for helping !