Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 2.54 KB

File metadata and controls

58 lines (42 loc) · 2.54 KB

EIPinCPI: Return Address

Recipes by Topic | Recipes by Author | Request Enhancement | Report a bug | Fix documentation

Bhalchandra Wadekar Bhalchandra Wadekar

This recipe lets you try out Return Address pattern using AMQP Adapter.

Download the integration flow for Enqueueing Customer
Download the integration flow for Processing Customer
Download the integration flow for Processing Response

Recipe

Step Code Why?
Enqueue Customer
Process Customer
Process Response

Related Recipes

  • Request Reply: This recipe retrieves a list of products using the Request-Reply pattern
  • Correlation Identifier| When sending the request, the sender adds a unique key to request. The receiver processes the request and puts the unique key as the Correlation Identifier in the reply message. Thus when a reply is received independent of the request, the sender knows the request corresponding the received reply based on the Correlation Identifier.

References

Sample integration flows

Enqueueing Customer

Integration Flow

Enqueueing Customer

Processing Customer

Integration Flow

Processing Customer

Processing Response

Integration Flow

Processing Response

Sample Input

<Customer>
    <Id>1</Id>
    <Name>SAP</Name>
</Customer>

Sample Output

<Response>
    <Result>SUCCESS</Result>
</Response>