This section explains the best practices to be followed when creating mediation sequences in the following scenarios.
...
Use Iterator mediator in association with Aggregate mediator.
Do not do any configuration after the Send mediator.
Do proper error handling to handle mediation errors as well as endpoint errors.
Use dollar context (i.e.
$ctx)
instead of using theget
property.Info This is because the
get
-property methods search even in Registry if the value is not available in the message context. Thus, it affects performance as Registry search is an expensive operation. However,$
ctx
only checks in the message context.Use appropriate intervals for tasks.
...