Soap 在EWS FindItem请求中使用限制时出现架构验证错误

Soap 在EWS FindItem请求中使用限制时出现架构验证错误,soap,wsdl,exchange-server,exchangewebservices,Soap,Wsdl,Exchange Server,Exchangewebservices,我试图在收件箱中找到ItemClass=IPM的邮件。注意 <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://schemas.microsoft.com/exchang

我试图在收件箱中找到ItemClass=IPM的邮件。注意

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns:tns="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:wsi="http://ws-i.org/schemas/conformanceClaim/">
    <soap:Header>
        <t:RequestServerVersion Version="Exchange2010_SP2"></t:RequestServerVersion>
    </soap:Header>

    <soap:Body>
        <FindItem Traversal="Shallow" xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
            <ItemShape>
                <t:BaseShape xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">IdOnly</t:BaseShape>
                <t:AdditionalProperties xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
                    <t:FieldURI FieldURI="item:ItemClass"></t:FieldURI>
                </t:AdditionalProperties>
            </ItemShape>

            <IndexedPageItemView MaxEntriesReturned="50" Offset="0" BasePoint="Beginning"></IndexedPageItemView>

            <Restriction>
                <IsEqualTo>
                    <FieldURI FieldURI="item:ItemClass"></FieldURI>
                    <FieldURIOrConstant>
                        <Constant Value="IPM.Note"></Constant>
                    </FieldURIOrConstant>
                </IsEqualTo>
            </Restriction>

            <ParentFolderIds>
                <t:DistinguishedFolderId Id="inbox" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"></t:DistinguishedFolderId>
            </ParentFolderIds>

        </FindItem>
    </soap:Body>
</soap:Envelope>
据我所知,在其他类型中


这里缺少什么?

其中一些元素位于“类型”命名空间中,因此它们需要
t:
前缀

        <Restriction>
            <t:IsEqualTo>
                <t:FieldURI FieldURI="item:ItemClass"></t:FieldURI>
                <t:FieldURIOrConstant>
                    <t:Constant Value="IPM.Note"></t:Constant>
                </t:FieldURIOrConstant>
            </t:IsEqualTo>
        </Restriction>

        <Restriction>
            <t:IsEqualTo>
                <t:FieldURI FieldURI="item:ItemClass"></t:FieldURI>
                <t:FieldURIOrConstant>
                    <t:Constant Value="IPM.Note"></t:Constant>
                </t:FieldURIOrConstant>
            </t:IsEqualTo>
        </Restriction>