6 Appendix A: Full WSDL
For ease of implementation, the full WSDL is provided in this appendix.
-
<?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:tns="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" targetNamespace="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> <wsdl:types> <xs:schema elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/exchange/services/2006/messages" version="Exchange2016" id="messages" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:include schemaLocation="MS-OXWSARCH-messages.xsd"/> </xs:schema> </wsdl:types> <wsdl:portType name="ExchangeServicePortType"> <wsdl:operation name="ArchiveItem"> <wsdl:input message="tns:ArchiveItemSoapIn"/> <wsdl:output message="tns:ArchiveItemSoapOut"/> </wsdl:operation> <wsdl:operation name="CreateFolderPath"> <wsdl:input message="tns:CreateFolderPathSoapIn"/> <wsdl:output message="tns:CreateFolderPathSoapOut"/> </wsdl:operation> </wsdl:portType> <wsdl:binding name="ExchangeServiceBinding" type="tns:ExchangeServicePortType"> <wsdl:documentation> <wsi:Claim conformsTo="http://ws-i.org/profiles/basic/1.0" xmlns:wsi="http://ws-i.org/schemas/conformanceClaim/"/> </wsdl:documentation> <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="ArchiveItem"> <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/ArchiveItem"/> <wsdl:input> <soap:header message="tns:ArchiveItemSoapIn" part="Impersonation" use="literal"/> <soap:header message="tns:ArchiveItemSoapIn" part="MailboxCulture" use="literal"/> <soap:header message="tns:ArchiveItemSoapIn" part="RequestVersion" use="literal"/> <soap:body use="literal" parts="request"/> </wsdl:input> <wsdl:output> <soap:body use="literal" parts="ArchiveItemResult"/> <soap:header message="tns:ArchiveItemSoapOut" part="ServerVersion" use="literal"/> </wsdl:output> </wsdl:operation> <wsdl:operation name="CreateFolderPath"> <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/CreateFolderPath"/> <wsdl:input> <soap:header message="tns:CreateFolderPathSoapIn" part="Impersonation" use="literal"/> <soap:header message="tns:CreateFolderPathSoapIn" part="MailboxCulture" use="literal"/> <soap:header message="tns:CreateFolderPathSoapIn" part="RequestVersion" use="literal"/> <soap:header message="tns:CreateFolderPathSoapIn" part="TimeZoneContext" use="literal"/> <soap:body use="literal" parts="request"/> </wsdl:input> <wsdl:output> <soap:body use="literal" parts="CreateFolderPathResult"/> <soap:header message="tns:CreateFolderPathSoapOut" part="ServerVersion" use="literal"/> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:message name="ArchiveItemSoapIn"> <wsdl:part name="request" element="tns:ArchiveItem"/> <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/> <wsdl:part name="MailboxCulture" element="t:MailboxCulture"/> <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/> </wsdl:message> <wsdl:message name="ArchiveItemSoapOut"> <wsdl:part name="ArchiveItemResult" element="tns:ArchiveItemResponse"/> <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/> </wsdl:message> <wsdl:message name="CreateFolderPathSoapIn"> <wsdl:part name="request" element="tns:CreateFolderPath"/> <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/> <wsdl:part name="MailboxCulture" element="t:MailboxCulture"/> <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/> <wsdl:part name="TimeZoneContext" element="t:TimeZoneContext"/> </wsdl:message> <wsdl:message name="CreateFolderPathSoapOut"> <wsdl:part name="CreateFolderPathResult" element="tns:CreateFolderPathResponse"/> <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/> </wsdl:message> </wsdl:definitions>