Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

OUT_ONLY

Possible Values

"true", "false"

Default Behavior

none

Scope

synapse

Description for value="true"

Set this property to "true" on a message to indicate that no response message is expected for it once it is forwarded from the ESB profile. In other words, the ESB profile will do an out-only invocation with such messages. It is very important to set this property on messages that are involved in out-only invocations to prevent the ESB profile from registering unnecessary callbacks for response handling and eventually running out of memory.

Code Block
<property name="OUT_ONLY" value="true"/>

Description for value="false"

Set this proerty property to "false" to call the endpoint and get a response once it is forwarded from the ESB.

Code Block
<property name="OUT_ONLY" value="faslefalse"/>

ERROR_CODE

Name

ERROR_CODE

Possible Values

string

Default Behavior

none

Scope

synapse

Description

Use this property to set a custom error code on a message which can be later processed by a Synapse fault handler. If the Synapse encounters an error during mediation or routing, this property will be automatically populated.

Example

Code Block
<property name="ERROR_CODE" value="100100"/>

...