Versions Compared

Key

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

...

ESB templates comes in two different forms.

  • Sequence Templates Template- Defines a templated form of a ESB sequence. Sequence template has the ability to parameterize XPath expressions used within a sequence defined inside a template. We invoke a sequence template with the Call Template Mediator by passing parameter values.
Code Block
<call-template target=”template” >
<parameter name=”name” value=”value”/>
.....
</call-template>
  • Endpoint Templates Template - Defines a templated form of an endpoint. Endpoint template has the ability to parameterize an endpoint defined within it. Invoking a template of this kind is achieved using a template endpoint.

...