1

我们使用 EWS FindItem 方法来获取邮件的 ID,一开始一切似乎都正常。但是,当我们尝试在 FindItem 中使用 IndexedPageItemView 发出分页请求时,我们遇到了 ErrorInternalServerError 错误。gSOAP创建的xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope 
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
xmlns:xsi="http://www.w3.org/20    01/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:ns1="http://schemas.microsoft.com/exchange/services/2006/messages">
<SOAP-ENV:Header><ns2:RequestServerVersion Version="Exchange2010_SP1"></ns2:RequestServerVersion></SOAP-ENV:Header>
<SOAP-ENV:Body><ns1:FindItem xsi:type="ns1:FindItemType" Traversal="Shallow">
<ns1:ItemShape><ns2:BaseShape>IdOnly</ns2:BaseShape></ns1:ItemShape>
<ns1:IndexedPageItemView MaxEntriesReturned="50" Offset="0" BasePoint="Beginning" xsi:type="ns2:IndexedPageViewType"></ns1:IndexedPageItemView>
<ns1:ParentFolderIds><ns2:DistinguishedFolderId Id="inbox"  xsi:type="ns2:DistinguishedFolderIdType"></ns2:DistinguishedFolderId></ns1:ParentFolderIds></ns1:FindItem>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我们错过了一些需要的东西吗?还是我们发出了错误的 SOAP 请求?我们的开发环境是 Mac OS 10.8、xcode 4.5、C++、gSOAP 2.8 和 Exchange Server 2010。谢谢。

4

1 回答 1

0

除了为xsi前缀定义的命名空间中的空格外,一切看起来都很好。

于 2014-03-27T23:07:04.110 回答