交换WebDAV 400错误请求:为什么?

时间:2010-07-05 08:44:54

标签: php exchange-server webdav

我一直在使用XML直接在PHP中使用WebDAV。我已设法创建带附件等的电子邮件,但当我尝试创建联系人时,我不断收到“400 Bad Request”。这是webdav查询以及我如何执行它:

 <?xml version="1.0"?>
    <g:propertyupdate 
    xmlns:g="DAV:" 
    xmlns:c="urn:schemas:contacts:" 
    xmlns:e="http://schemas.microsoft.com/exchange/" 
    xmlns:mapi="http://schemas.microsoft.com/mapi/" 
    xmlns:x="xml:" 
    xmlns:cal="urn:schemas:calendar:" 
    xmlns:mail="urn:schemas:httpmail:">
    <g:set>
    <g:prop>
    <g:contentclass>urn:content-classes:person</g:contentclass>
    <e:outlookmessageclass>IPM.Contact</e:outlookmessageclass>
    <c:givenName>JoLynn</c:givenName>
    <c:middlename>Julie</c:middlename>
    </g:prop>
    </g:set>
    </g:propertyupdate>

并回复:

HTTP/1.1 400 Bad Request
Connection: close
Date: Mon, 05 Jul 2010 08:41:43 GMT
Server: Microsoft-IIS/6.0
MicrosoftOfficeWebServer: 5.0_Pub
X-Powered-By: ASP.NET
Content-Type: text/html
Content-Length: 1709
MS-WebStorage: 6.5.7638

发送数据:$h->fetch($url, 0, null, $exchange_username, $exchange_password, "PROPPATCH")

任何帮助都非常感谢!¬

我从http://www.troywolf.com/articles/php/exchange_webdav_examples.php

开始使用Troy Wolf的示例代码

1 个答案:

答案 0 :(得分:0)

我修复了它,忘了发送一些带有请求的标题(内容类型,深度和翻译标题是准确的!)