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. The contents of each file are included in this section.

File name

Description

Section

MS-OXWOOF.wsdl

Contains the WSDL for the implementation of this protocol.

6

MS-OXWOOF-messages.xsd

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

7.1

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

This section contains the contents of the MS-OXWOOF.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:s="http://www.w3.org/2001/XMLSchema" targetNamespace="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">
   <wsdl:types>
     <xs:schema id="messages" elementFormDefault="qualified" version="Exchange2007_SP1" xmlns:tns="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.microsoft.com/exchange/services/2006/messages">
       <xs:include schemaLocation="MS-OXWOOF-messages.xsd"/>
     </xs:schema>
   </wsdl:types>
   <wsdl:message name="GetUserOofSettingsSoapIn">
     <wsdl:part name="GetUserOofSettingsRequest" element="tns:GetUserOofSettingsRequest"/>
     <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="GetUserOofSettingsSoapOut">
     <wsdl:part name="GetUserOofSettingsResult" element="tns:GetUserOofSettingsResponse"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
   <wsdl:message name="SetUserOofSettingsSoapIn">
     <wsdl:part name="SetUserOofSettingsRequest" element="tns:SetUserOofSettingsRequest"/>
       <wsdl:part name="Impersonation" element="t:ExchangeImpersonation"/>
     <wsdl:part name="RequestVersion" element="t:RequestServerVersion"/>
   </wsdl:message>
   <wsdl:message name="SetUserOofSettingsSoapOut">
     <wsdl:part name="SetUserOofSettingsResult" element="tns:SetUserOofSettingsResponse"/>
     <wsdl:part name="ServerVersion" element="t:ServerVersionInfo"/>
   </wsdl:message>
   <wsdl:portType name="ExchangeServicePortType">
     <wsdl:operation name="GetUserOofSettings">
       <wsdl:input message="tns:GetUserOofSettingsSoapIn"/>
       <wsdl:output message="tns:GetUserOofSettingsSoapOut"/>
     </wsdl:operation>
     <wsdl:operation name="SetUserOofSettings">
       <wsdl:input message="tns:SetUserOofSettingsSoapIn"/>
       <wsdl:output message="tns:SetUserOofSettingsSoapOut"/>
     </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" style="document"/>
     <wsdl:operation name="GetUserOofSettings">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/GetUserOofSettings"/>
       <wsdl:input>
         <soap:header message="tns:GetUserOofSettingsSoapIn" part="Impersonation" use="literal"/>
         <soap:body parts="GetUserOofSettingsRequest" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body parts="GetUserOofSettingsResult" use="literal"/>
         <soap:header message="tns:GetUserOofSettingsSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
     <wsdl:operation name="SetUserOofSettings">
       <soap:operation soapAction="http://schemas.microsoft.com/exchange/services/2006/messages/SetUserOofSettings"/>
       <wsdl:input>
         <soap:header message="tns:SetUserOofSettingsSoapIn" part="Impersonation" use="literal"/>
         <soap:body parts="SetUserOofSettingsRequest" use="literal"/>
       </wsdl:input>
       <wsdl:output>
         <soap:body parts="SetUserOofSettingsResult" use="literal"/>
         <soap:header message="tns:SetUserOofSettingsSoapOut" part="ServerVersion" use="literal"/>
       </wsdl:output>
     </wsdl:operation>
   </wsdl:binding>
 </wsdl:definitions>