6 Appendix A: Full WSDL

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

File name

Description

Section

MS-OXWSCONV.wsdl

Contains the WSDL for the implementation of this protocol.

6

MS-OXWSCONV-messages.xsd

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

7.1

MS-OXWSCONV-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-OXWSCONV-types.xsd or MS-OXWSCONV-messages.xsd schemas have to be placed in the common folder along with the files listed in the table.

This section contains the contents of the MS-OXWSCONV.wsdl file.

 <?xml version="1.0" encoding="utf-8"?>
 <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" targetNamespace="http://schemas.microsoft.com/exchange/services/2006/messages">
   <wsdl:types>
     <xs:schema id="messages" elementFormDefault="qualified" version="Exchange2016" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.microsoft.com/exchange/services/2006/messages">
       <xs:include schemaLocation="MS-OXWSCONV-messages.xsd"/>
     </xs:schema>
   </wsdl:types>
   <wsdl:portType name="ExchangeServicePortType">
     <wsdl:operation name="FindConversation">
       <wsdl:input message="tns:FindConversationSoapIn"/>
       <wsdl:output message="tns:FindConversationSoapOut"/>
     </wsdl:operation>
     <wsdl:operation name="GetConversationItems">
       <wsdl:input message="tns:GetConversationItemsSoapIn"/>
       <wsdl:output message="tns:GetConversationItemsSoapOut"/>
     </wsdl:operation>
     <wsdl:operation name="ApplyConversationAction">
       <wsdl:input message="tns:ApplyConversationActionSoapIn"/>
       <wsdl:output message="tns:ApplyConversationActionSoapOut"/>
     </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 style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
     <wsdl:operation name="FindConversation">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/FindConversation"/>
       <wsdl:input>
         <soap:body parts="request" use="literal"/>
         <soap:header message="tns:FindConversationSoapIn" part="RequestVersion" use="literal"/>
         <soap:header message="tns:FindConversationSoapIn" part="Impersonation" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body parts="FindConversationResult" use="literal"/>
         <soap:header message="tns:FindConversationSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
     <wsdl:operation name="GetConversationItems">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/GetConversationItems"/>
       <wsdl:input>
         <soap:body parts="request" use="literal"/>
         <soap:header message="tns:GetConversationItemsSoapIn" part="RequestVersion" use="literal"/>
         <soap:header message="tns:GetConversationItemsSoapIn" part="Impersonation" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body parts="GetConversationItemsResult" use="literal"/>
         <soap:header message="tns:GetConversationItemsSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
     <wsdl:operation name="ApplyConversationAction">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/ApplyConversationAction"/>
       <wsdl:input>
         <soap:body parts="request" use="literal"/>
         <soap:header message="tns:ApplyConversationActionSoapIn" part="RequestVersion" use="literal"/>
         <soap:header message="tns:ApplyConversationActionSoapIn" part="Impersonation" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body parts="ApplyConversationActionResult" use="literal"/>
         <soap:header message="tns:ApplyConversationActionSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
   </wsdl:binding>
   <wsdl:message name="FindConversationSoapIn">
     <wsdl:part name="request" element="tns:FindConversation"/>
     <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="FindConversationSoapOut">
     <wsdl:part name="FindConversationResult" element="tns:FindConversationResponse"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
   <wsdl:message name="ApplyConversationActionSoapIn">
     <wsdl:part name="request" element="tns:ApplyConversationAction"/>
     <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="ApplyConversationActionSoapOut">
     <wsdl:part name="ApplyConversationActionResult" element="tns:ApplyConversationActionResponse"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
   <wsdl:message name="GetConversationItemsSoapIn">
     <wsdl:part name="request" element="tns:GetConversationItems"/>
     <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="GetConversationItemsSoapOut">
     <wsdl:part name="GetConversationItemsResult" element="tns:GetConversationItemsResponse"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
 </wsdl:definitions>

.