6 Appendix A: Full WSDL

The XML files that are listed in the following table are required in order to implement the functionality specified in this document.

File name

Description

Section

MS-OXWSPERS.wsdl

Contains the WSDL for the implementation of this protocol.

6

MS-OXWSPERS-messages.xsd

Contains the XML schema message definitions that are used in this protocol.

7.1

MS-OXWSPERS-types.xsd

Contains the XML schema type definitions that are used in this protocol.

7.2

These files have to be placed in a common folder in order for the WSDL to validate and operate. Also, any schema files that are included in or imported into the MS-OXWSPERS-types.xsd or MS-OXWSPERS-messages.xsd schemas have to be placed in the common folder along with the files.

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-OXWSPERS-messages.xsd"/>
     </xs:schema>
   </wsdl:types>
   <wsdl:portType name="ExchangeServicePortType">
     <wsdl:operation name="FindPeople">
       <wsdl:input message="tns:FindPeopleSoapIn"/>
       <wsdl:output message="tns:FindPeopleSoapOut"/>
     </wsdl:operation>
     <wsdl:operation name="GetPersona">
       <wsdl:input message="tns:GetPersonaSoapIn"/>
       <wsdl:output message="tns:GetPersonaSoapOut"/>
     </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="FindPeople">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/FindPeople"/>
       <wsdl:input>
         <soap:body use="literal" parts="request"/>
         <soap:header message="tns:FindPeopleSoapIn" part="RequestVersion" use="literal"/>
         <soap:header message="tns:FindPeopleSoapIn" part="Impersonation" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body use="literal" parts="FindPeopleResult"/>
         <soap:header message="tns:FindPeopleSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
     <wsdl:operation name="GetPersona">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/GetPersona"/>
       <wsdl:input>
         <soap:body use="literal" parts="request"/>
         <soap:header message="tns:GetPersonaSoapIn" part="RequestVersion" use="literal"/>
         <soap:header message="tns:GetPersonaSoapIn" part="Impersonation" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body use="literal" parts="GetPersonaResult"/>
         <soap:header message="tns:GetPersonaSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
   </wsdl:binding>
   <wsdl:message name="FindPeopleSoapIn">
     <wsdl:part name="request" element="tns:FindPeople"/>
     <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="FindPeopleSoapOut">
     <wsdl:part name="FindPeopleResult" element="tns:FindPeopleResponse"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
   <wsdl:message name="GetPersonaSoapIn">
     <wsdl:part name="request" element="tns:GetPersona"/>
     <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="GetPersonaSoapOut">
     <wsdl:part name="GetPersonaResult" element="tns:GetPersonaResponseMessage"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
 </wsdl:definitions>