2017-02-13 2 views

Antwort

0

ein GetMailTips ist Operation, die MaxMessageSize Element

kehrt
<t:MaxMessageSize xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">10485760</t:MaxMessageSize> 

Anfrage:

<?xml version="1.0" encoding="utf-8" ?> 
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
     xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
     xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"> 
    <soap:Header> 
    <t:RequestServerVersion Version="Exchange2010" /> 
    </soap:Header> 
    <soap:Body> 
    <GetMailTips xmlns="http://schemas.microsoft.com/exchange/services/2006/messages"> 
     <SendingAs> 
     <t:EmailAddress> [email protected] </t:EmailAddress> 
     <t:RoutingType>SMTP</t:RoutingType> 
     </SendingAs> 
     <Recipients> 
     <t:Mailbox> 
      <t:EmailAddress> [email protected] </t:EmailAddress> 
      <t:RoutingType>SMTP</t:RoutingType> 
     </t:Mailbox> 
     </Recipients> 
     <MailTipsRequested>All</MailTipsRequested> 
    </GetMailTips> 
    </soap:Body> 
</soap:Envelope> 

https://msdn.microsoft.com/en-us/library/office/dd877060(v=exchg.150).aspx

1

Es auf dem Exchange-Version hängt

Von Microsofts blog:

maxReceivedMessageSize (WCF) – Identifies the maximum message size that is accepted by EWS. This maximum message size is 35,000,000 bytes, which translates to 25 MB of base64-encoded data. Note: The values for this limit differ for an on-premise Exchange 2010 deployment. In the initial release version of Exchange 2010, the message size limit is 10 MB. In Exchange 2010 Service Pack 1 (SP1), the message size limit is 35 MB.

+0

ich die Nachrichtengröße througth eine EWS-SOAP-Anforderung – zizoodiesel

1

lesen PR_MAX_SUBMIT_MESSAGE_SIZE Eigenschaft (0x666D0003) aus dem IMsgStore Objekt.

+0

Hallo Dmitry, erhalten wollte, wenn ich versuche mit einem GetFolder Betrieb diese Eigenschaft durch eine SOAP-Anforderung zu verlangen es gibt nichts zurück ich Abfrage der Ordner msgfolderroot ich habe versucht auch mit root – zizoodiesel

+0

ich habe noch nie diese Eigenschaft mit einem SOAP-Aufruf versucht. Es funktioniert gut in MAPI –

Verwandte Themen