Raw | The inbound message as received and stored by the channel, after the attachment handler has extracted any attachments but before the preprocessor script has modified the message. |
Processed Raw | The altered inbound message after the preprocessor script has executed. |
Transformed | When a message enters a transformer, the raw (or processed raw) data is serialized into an internal representation, which may be XML, JSON, or Raw depending on the inbound data type. The transformer then has a chance to alter this serialized data. This content is the internal representation of the message after the transformer has executed. |
Encoded | After a message leaves the transformer, the Transformed Data (internal representation of the message) is deserialized into the outbound data type. This is referred to as the Encoded Data. The encoded data for a source connector is equivalent to the raw data for a destination connector. |
Sent | A snapshot of the destination connector properties immediately before the destination connector attempts to dispatch the message. |
Response | The Response object returned by the destination connector after a dispatch has been attempted. This will include the response status, the status message, and the actual response payload (if present). |
Response Transformed | This is the same as the Transformed content, except that it is for the response data. This will be the internal representation of the response content, serialized into the response inbound data type. |
Processed Response | This is the same as the Encoded content, except that it is for the response data. This will be the internal serialized representation of the response content, deserialized into the response outbound data type. |