ScannerStatusConditionEvent 要素
必須の ScannerStatusConditionEvent 要素では、スキャン デバイスでの 1 つの状態変更に関する詳細情報をクライアントに提供します。
使用方法
<wscn:ScannerStatusConditionEvent>
child elements
</wscn:ScannerStatusConditionEvent>
属性
属性はありません。
子要素
要素 |
---|
DeviceCondition |
親要素
親要素は存在しません。
解説
WSD スキャン サービスは、ActiveConditions 要素テーブルで DeviceCondition 要素が追加または変更されたときに、ScannerStatusConditionEvent 要素をクライアントに送信します。 ScannerStatusConditionEvent の本文には、新規または変更された DeviceCondition 要素が含まれています。
WSD スキャン サービスは、報告された DeviceCondition がクリアされたときに、ScannerStatusConditionClearedEvent 要素をクライアントに送信する必要があります。
例
次のコード例は、スキャン デバイスがスキャン ランプの障害についてクライアントに通知する方法を示しています。
<soap:Envelope
xmlns:soap="https://www.w3.org/2003/05/soap-envelope"
xmlns:wsa="https://schemas.xmlsoap.org/ws/2004/08/addressing"
xmlns:wse="https://schemas.xmlsoap.org/ws/2004/08/eventing"
xmlns:wscn="https://schemas.microsoft.com/windows/2006/01/wdp/scan"
soap:encodingStyle='https://www.w3.org/2002/12/soap-encoding'>
<soap:Header>
<wsa:To>AddressofEventSink</wsa:To>
<wsa:Action>
https://schemas.microsoft.com/windows/2006/01/wdp/scan/ScannerStatusConditionEvent
</wsa:Action>
<wsa:MessageID>uuid:UniqueMsgId</wsa:MessageID>
</soap:Header>
<soap:Body>
<wscn:ScannerStatusConditionEvent>
<wscn:DeviceCondition wscn:Id="1543">
<wscn:Time>2006-01-21T17:22:27.5242689Z</wscn:Time>
<wscn:Name>LampError</wscn:Name>
<wscn:Component>Platen</wscn:Component>
<wscn:Severity>Critical</wscn:Severity>
</wscn:DeviceCondition>
</wscn:ScannerStatusConditionEvent>
</soap:Body
</soap:Envelope>