EWS XML查询没有答案

时间:2012-08-09 09:44:56

标签: java soap exchangewebservices

我开发了一个连接到Exchange Web服务的Java接口,它一直有效,直到我执行请求。

我的问题是答案总是空的。例如,如果我将以下查询发送到2007交换服务器:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t=\"http://schemas.microsoft.com/exchange/services/2006/types\">"
<soap:Header>
<t:RequestServerVersion Version=\"Exchange2007\"/>"
</soap:Header>"
<soap:Body>"
  <FindItem xmlns=\"http://schemas.microsoft.com/exchange/services/2006/messages\" xmlns:t=\"http://schemas.microsoft.com/exchange/services/2006/types\" Traversal=\"Shallow\">"
    <ItemShape>"
      <t:BaseShape>IdOnly</t:BaseShape>"
    </ItemShape>
    <ParentFolderIds>
      <t:FolderId Id="inbox" />
    </ParentFolderIds>"
  </FindItem>
</soap:Body>
</soap:Envelope>

我最后得到的答案是一个简单的普通HTTP数据包,没有任何错误。这是它的内容(我做了一些System.out来输出这个):

################ANSWER################
#Header : Date: Thu, 09 Aug 2012 09:36:53 GMT#
#Header : Server: Microsoft-IIS/6.0#
#Header : X-Powered-By: ASP.NET#
#Header : X-AspNet-Version: 2.0.50727#
#Header : Cache-Control: private#
#Header : Content-Length: 0#
################DATA################
Data : 

如您所见,内容的长度为空。似乎服务器接受请求,对其执行某些操作,并回复空结果。

你知道为什么吗?

THX!

2 个答案:

答案 0 :(得分:1)

我找到了解决一切问题的强大技巧。您发送到服务器的HTTP post消息的最重要且仅需要标头是Content-Type值。每个其他标题都是可选的,我甚至不确定它们是否用于任何事情。 Content-Type是解锁所有内容的关键。

答案 1 :(得分:0)

有效的FindItem请求/响应,使用EWS搜索收件箱文件夹中的邮件:

请求:

<FindItem Traversal="Shallow" xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<ItemShape><t:BaseShape>IdOnly</t:BaseShape></ItemShape>
<ParentFolderIds><t:DistinguishedFolderId Id="inbox"></t:DistinguishedFolderId></ParentFolderIds></FindItem>

JWebServices for Exchange 1.1评估版,www.independentsoft.com。

响应:

<?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header><h:ServerVersionInfo MajorVersion="14" MinorVersion="16" MajorBuildNumber="175" MinorBuildNumber="8" Version="Exchange2010_SP2" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/></s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><m:FindItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages><m:FindItemResponseMessage ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder TotalItemsInView="1" IncludesLastItemInRange="true">
<t:Items><t:Message><t:ItemId Id="AAMkAGM2NmE0NDQ4LTk0ZDAtNDRmZi1iYzJiLTI3ZGFiZTIwNTE4NQBGAAAAAADMQnRUWVgLTKClbuKuQmcEBwA5UIf+H7cbQZVv4gNmZSgmAAAA2iK7AAA5UIf+H7cbQZVv4gNmZSgmAAAD76voAAA=" ChangeKey="CQAAABYAAAA5UIf+H7cbQZVv4gNmZSgmAAAD77IT"/></t:Message></t:Items>
</m:RootFolder></m:FindItemResponseMessage></m:ResponseMessages></m:FindItemResponse></s:Body></s:Envelope>