Elemento JobEndStateEvent
L'elemento JobEndStateEvent richiesto informa il client che lo scanner ha completato l'elaborazione di un processo.
Utilizzo
<wscn:JobEndStateEvent>
child elements
</wscn:JobEndStateEvent>
Attributi
Non ci sono attributi.
Elementi figlio
Elemento |
---|
JobEndState |
Elementi padre
Non ci sono elementi padre.
Commenti
Il servizio di analisi WSD invia un elemento evento JobEndStateEvent al client al termine dell'elaborazione di un processo. JobEndStateEvent contiene elementi dati che identificano il processo completato e i dettagli relativi al completamento.
Esempio
Nell'esempio di codice seguente viene illustrato come il dispositivo di analisi notifica al client lo stato finale e lo stato del processo 253.
<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/JobEndStateEvent
</wsa:Action>
<wsa:MessageID>uuid:UniqueMsgId</wsa:MessageID>
</soap:Header>
<soap:Body>
<wscn:JobEndStateEvent>
<wscn:JobEndState>
<wscn:JobId>253</wscn:JobId>
<wscn:JobCompletedState>Completed</wscn:JobCompletedState>
<wscn:JobCompletedStateReasons>
<wscn:JobStateReason>JobCompletedWithWarnings</wscn:JobStateReason>
</wscn:JobCompletedStateReasons>
<wscn:JobName>Scan from Imaging App</wscn:JobName>
<wscn:JobOriginatingUserName>User</wscn:JobOriginatingUserName>
<wscn:ScansCompleted>7</wscn:ScansCompleted>
<wscn:JobCompletedTime>2006-01-24T11:37:05.673Z</wscn:JobCompletedTime>
</wscn:JobEndState>
</wscn:JobEndStateEvent>
</soap:Body
</soap:Envelope>