AddDistributionGroupToImList 操作
AddDistributionGroupToImList EWS 操作に関する情報を検索します。
AddDistributionGroupToImList Exchange Web Services (EWS) 操作は、統合連絡先ストアのインスタント メッセージング (IM) リストに配布グループを追加します。
この操作は Exchange Server 2013 で導入されました。
AddDistributionGroupToImList 操作の使用
AddDistributionGroupToImList 操作は、IM リストに追加する配布グループを識別する 1 つの引数を受け取ります。 この操作では、配布グループは作成されません。配布グループは既に作成されている必要があります。
この操作では、次の表に示す SOAP ヘッダーを使用できます。
表 1. AddDistributionGroupToImList 操作 SOAP ヘッダー
ヘッダー名 | 要素 | 説明 |
---|---|---|
偽装 |
ExchangeImpersonation |
クライアント アプリケーションが偽装しているユーザーを識別します。 これは要求に適用されます。 |
MailboxCulture |
MailboxCulture |
RFC 3066 で定義されている "言語の識別用タグ" で定義されているカルチャを識別し、メールボックスにアクセスするために使用します。 これは要求に適用されます。 |
RequestVersion |
RequestServerVersion |
操作要求のスキーマ バージョンを識別します。 これは要求に適用されます。 |
ServerVersion |
ServerVersionInfo |
要求に応答したサーバーのバージョンを識別します。 これは応答に適用されます。 |
AddDistributionGroupToImList 操作要求の例
次の AddDistributionGroupToImList 操作要求の例は、IM リストに配布グループを追加する方法を示しています。
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
<soap:Header>
<t:RequestServerVersion Version="Exchange2013" />
<t:MailboxCulture>en-US</t:MailboxCulture>
</soap:Header>
<soap:Body >
<m:AddDistributionGroupToImList>
<m:SmtpAddress>distributionlist1@example.com</m:SmtpAddress>
</m:AddDistributionGroupToImList>
</soap:Body>
</soap:Envelope>
要求 SOAP 本文には、次の要素が含まれています。
AddDistributionGroupToImList 操作の応答が成功しました
次の例は、 AddDistributionGroupToImList 操作要求に対する正常な応答を示しています。
成功した応答には、配布グループの表示名、配布グループの Exchange ストア クラス、および新しい配布グループの EWS 識別子が含まれます。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
<s:Header>
<t:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="349"
MinorBuildNumber="0"
Version="Exchange2013"/>
</s:Header>
<s:Body>
<m:AddDistributionGroupToImListResponse ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:ImGroup>
<t:DisplayName>distributionlist1@example.com</t:DisplayName>
<t:GroupType>IPM.DistList.MOC.DG</t:GroupType>
<t:ExchangeStoreId Id="AAMkAGQ1MjJjAA="
ChangeKey="EgAAAA=="/>
</m:ImGroup>
</m:AddDistributionGroupToImListResponse>
</s:Body>
</s:Envelope>
応答 SOAP 本文には、次の要素が含まれています。
AddDistributionGroupToImList 操作 ErrorInvalidImDistributionGroupSmtpAddress エラー応答
次の例は、 AddDistributionGroupToImList 操作要求に対するエラー応答を示しています。 Exchange ストアに存在しない配布グループを追加しようとすると、次のエラー応答が発生します。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="349"
MinorBuildNumber="0"
Version="Exchange2013"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AddDistributionGroupToImListResponse ResponseClass="Error"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<MessageText>The specified IM distribution group SMTP address is invalid.</MessageText>
<ResponseCode>ErrorInvalidImDistributionGroupSmtpAddress</ResponseCode>
<DescriptiveLinkKey>0</DescriptiveLinkKey>
</AddDistributionGroupToImListResponse>
</s:Body>
</s:Envelope>
エラー応答 SOAP 本文には、次の要素が含まれています。