JobStatusEvent-Element
Das erforderliche Element JobStatusEvent informiert den Client darüber, dass sich die status eines Auftrags geändert hat.
Verbrauch
<wscn:JobStatusEvent>
child elements
</wscn:JobStatusEvent>
Attribute
Es gibt keine Attribute.
Untergeordnete Elemente
Element |
---|
JobStatus |
Übergeordnete Elemente
Es gibt keine übergeordneten Elemente.
Hinweise
Ein WSD-Überprüfungsdienst sendet ein JobStatusEvent-Element an den Client, wenn sich die status eines Auftrags geändert hat. JobStatusEvent enthält ein JobStatus-Element, das alle Informationen zum aktuellen status des Auftrags definiert. Die erste JobStatusEvent-Nachricht enthält in der Regel das Element JobId und einen JobState-Wert von Started.
Beispiele
Das folgende Codebeispiel zeigt, wie das Scangerät einen Client über den aktuellen Status von Auftrag 253 benachrichtigt.
<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/JobStatusEvent
</wsa:Action>
<wsa:MessageID>uuid:UniqueMsgId</wsa:MessageID>
</soap:Header>
<soap:Body>
<wscn:JobStatusEvent>
<wscn:JobStatus>
<wscn:JobId>253</wscn:JobId>
<wscn:JobState>Processing</wscn:JobState>
<wscn:JobStateReasons>
<wscn:JobStateReason>JobScanning</wscn:JobStateReason>
</wscn:JobStateReasons>
<wscn:ScansCompleted>4</wscn:ScansCompleted>
<wscn:JobCreatedTime>2006-01-24T11:34:35.8345Z</wscn:JobCreatedTime>
</wscn:JobStatus>
</wscn:JobStatusEvent>
</soap:Body
</soap:Envelope>