2

I could see two different objects - message and payload in Mule Esb. But I am not able to understand the actual characteristics of the both. Could anyone kindly help me to understand this?.

Ashok Bala
  • 168
  • 1
  • 6
  • 23

1 Answers1

5

The Mule message, #[message] is the data that passes through an application via one or more flows. It consists of two main parts:

  • The message header, which contains metadata about the message.
  • The message payload, which contains your business-specific data.

And The message payload #[payload] is the most important part of the Mule message which contains the data your Mule application processes.

Please refer Mule Documentaion for more details.

AnupamBhusari
  • 2,395
  • 2
  • 14
  • 22