Exec

Inclusion code:

Service Deployment
Port NameLocationProtocolInterfaces
Exec documentation:
Exec--ExecInterface

List of Available Interfaces

ExecInterface

Interface documentation:

Operation NameInput TypeOutput TypeFaults
execCommandExecutionRequestCommandExecutionResult

Operation Description

exec

Operation documentation:

Invocation template:

exec@Exec( request )( response )

Request type

Type: CommandExecutionRequest

type CommandExecutionRequest: string {
    .args*: string
    .workingDirectory?: string
    .stdOutConsoleEnable?: bool
    .waitFor?: int
}

CommandExecutionRequest : string

  • args : string
  • workingDirectory : string
  • stdOutConsoleEnable : bool
  • waitFor : int

Response type

Type: CommandExecutionResult

type CommandExecutionResult: any {
    .exitCode?: int
    .stderr?: string
}

CommandExecutionResult : any

  • exitCode : int
  • stderr : string