1. Apache Camel Documentation (Official Vendor Documentation): The Javadoc for the org.apache.camel.Exchange interface
which is the foundation for SAP CPI's message processing
explicitly defines the core components. It includes methods like getExchangeId()
getIn()
and getException(). There is no standard method or property for runtime node information.
Source: Apache Camel 3.x Javadoc
org.apache.camel.Exchange interface.
2. SAP Help Portal (Official Vendor Documentation): The SAP Cloud Integration documentation describes the message processing model
which is based on the Camel Exchange. It details the structure containing the message (In/Out)
headers
properties
and the handling of exceptions.
Source: SAP Help Portal
Cloud Integration – "Understand the Message Processing Model". This section outlines the message structure
which aligns with the Camel Exchange model and does not include runtime node as a default component.