Opération GetServiceConfiguration
L’opération GetServiceConfiguration obtient des informations de configuration pour le type de service spécifié. Cette opération peut retourner des paramètres de configuration pour les services de messagerie unifiée, règles de protection et conseils de messagerie.
Exemple de requête GetServiceConfiguration
Description
L’exemple suivant de demande GetServiceConfiguration montre comment former une demande pour obtenir des informations de configuration pour le service de messagerie unifiée.
Code
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<t:RequestServerVersion Version="Exchange2010" />
</soap:Header>
<soap:Body>
<m:GetServiceConfiguration>
<m:RequestedConfiguration>
<m:ConfigurationName>UnifiedMessagingConfiguration</m:ConfigurationName>
</m:RequestedConfiguration>
</m:GetServiceConfiguration>
</soap:Body>
</soap:Envelope>
Exemple de réponse GetServiceConfiguration
Description
L’exemple suivant montre une réponse réussie à la requête GetServiceConfiguration .
Code
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="14"
MinorVersion="0"
MajorBuildNumber="639"
MinorBuildNumber="20"
Version="Exchange2010"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<GetServiceConfigurationResponse ResponseClass="Success"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<ResponseCode>NoError</ResponseCode>
<ResponseMessages>
<ServiceConfigurationResponseMessageType ResponseClass="Success">
<ResponseCode>NoError</ResponseCode>
<m:UnifiedMessagingConfiguration xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
<t:UmEnabled xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">true</t:UmEnabled>
<t:PlayOnPhoneDialString xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">user@contoso.com</t:PlayOnPhoneDialString>
<t:PlayOnPhoneEnabled xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">true</t:PlayOnPhoneEnabled>
</m:UnifiedMessagingConfiguration>
</ServiceConfigurationResponseMessageType>
</ResponseMessages>
</GetServiceConfigurationResponse>
</s:Body>
</s:Envelope>
Exemple de réponse d’erreur GetServiceConfiguration
Description
L’exemple suivant montre une réponse d’erreur à la requête GetServiceConfiguration . Cette erreur a été provoquée par un nom de configuration incorrect.
Code
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<s:Fault>
<faultcode xmlns:a="http://schemas.microsoft.com/exchange/services/2006/types">a:ErrorSchemaValidation</faultcode>
<faultstring xml:lang="en-US">The request failed schema validation:
The 'http://schemas.microsoft.com/exchange/services/2006/messages:ConfigurationName' element
is invalid - The value 'UUnifiedMessagingConfiguration' is invalid according to its
datatype 'http://schemas.microsoft.com/exchange/services/2006/types:ServiceConfigurationType'
- The Enumeration constraint failed.</faultstring>
<detail>
<e:ResponseCode xmlns:e="http://schemas.microsoft.com/exchange/services/2006/errors">ErrorSchemaValidation</e:ResponseCode>
<e:Message xmlns:e="http://schemas.microsoft.com/exchange/services/2006/errors">The request failed schema validation.</e:Message>
<t:MessageXml xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<t:LineNumber>13</t:LineNumber>
<t:LinePosition>62</t:LinePosition>
<t:Violation>The 'http://schemas.microsoft.com/exchange/services/2006/messages:ConfigurationName' element
is invalid - The value 'UUnifiedMessagingConfiguration' is invalid according to its
datatype 'http://schemas.microsoft.com/exchange/services/2006/types:ServiceConfigurationType'
- The Enumeration constraint failed.</t:Violation>
</t:MessageXml>
</detail>
</s:Fault>
</s:Body>
</s:Envelope>