Unsubscribe 操作
サブスクライブ解除操作は、プル通知サブスクリプションを終了するために使用されます。 サブスクリプションのタイムアウトを許可するのではなく、この操作を使用します。 この操作は、プル通知に対してのみ有効です。
サブスクライブ解除要求の例
説明
次の例は、通知サービスからクライアントの登録を解除するために送信される SOAP XML メッセージを示しています。
コード
<?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">
<soap:Body>
<Unsubscribe xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<SubscriptionId>e6fbf5c1-7e26-4bc6-a5f2-882063d5e34e</SubscriptionId>
</Unsubscribe>
</soap:Body>
</soap:Envelope>
サブスクライブ解除要求要素
要求では、次の要素が使用されます。
正常な登録解除応答の例
説明
次の例は、Unsubscribe 要求に対する正常な応答を示しています。
コード
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<t:ServerVersionInfo MajorVersion="8" MinorVersion="0" MajorBuildNumber="628" MinorBuildNumber="0"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" />
</soap:Header>
<soap:Body>
<UnsubscribeResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<m:ResponseMessages>
<m:UnsubscribeResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
</m:UnsubscribeResponseMessage>
</m:ResponseMessages>
</UnsubscribeResponse>
</soap:Body>
</soap:Envelope>
応答要素の登録を解除する
応答では、次の要素が使用されます。
サブスクライブ解除エラー応答の例
説明
次の登録解除エラー応答の例は、Exchange ストアに配置できないサブスクリプション識別子を使用してサブスクライブ解除を試みた場合に発生します。
コード
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<t:ServerVersionInfo MajorVersion="8" MinorVersion="0" MajorBuildNumber="628" MinorBuildNumber="0"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" />
</soap:Header>
<soap:Body>
<UnsubscribeResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<m:ResponseMessages>
<m:UnsubscribeResponseMessage ResponseClass="Error">
<m:MessageText>The specified subscription was not found.</m:MessageText>
<m:ResponseCode>ErrorSubscriptionNotFound</m:ResponseCode>
<m:DescriptiveLinkKey>0</m:DescriptiveLinkKey>
</m:UnsubscribeResponseMessage>
</m:ResponseMessages>
</UnsubscribeResponse>
</soap:Body>
</soap:Envelope>
サブスクライブ解除エラー応答要素
エラー応答では、次の要素が使用されます。