Represents the result of an OS command executed remotely on a device.
http://eurotech.com/esf/2.0
name | data type | type | namespace | min/max occurs | description |
---|---|---|---|---|---|
exitCode | int | element | esf | 0/1 | The OS command exit code. |
timedout | boolean | element | esf | 0/1 | Whether the OS command has been terminated by a timeout. |
stderr | string | element | esf | 0/1 | The standard error of the OS command. |
stdout | string | element | esf | 0/1 | The standard output of the OS command. |
exceptionMessage | string | element | esf | 0/1 | The message associated to an Exception occurring during command execution. |
exceptionStack | string | element | esf | 0/1 | The stack associated to an Exception occurring during command execution. |
Example
<commandOutput xmlns="http://eurotech.com/esf/2.0"> <exitCode>...</exitCode> <timedout>...</timedout> <stderr>...</stderr> <stdout>...</stdout> <exceptionMessage>...</exceptionMessage> <exceptionStack>...</exceptionStack> </commandOutput>