This section explains, through an example scenario, how the Dead Letter Channel EIP can be implemented using WSO2 ESB. The following topics are covered:
Table of Contents |
---|
...
Before digging into implementation details, let's take a look at the relationship between the example scenario and the Dead Letter Channel EIP by comparing their core components. We use three constructs of WSO2 ESB to implement the Dead Letter Channel EIP.
Dead Letter Channel EIP (Figure 1) | Dead Letter Channel Example Scenario (Figure 2) | ||
---|---|---|---|
Sender | Stock Quote Client | Intended Recipient | Stock Quote Service Instance |
Dead Letter Channel | Store mediator, Message stores, Message processors | ||
Intended Receiver | Simple Stock Quote Serviceservice |
The diagram below depicts the DLC architecture in WSO2 the ESB.
Figure 3: DLC architecture in the WSO2 ESB
The store mediator stores the dead message in the specified message store. The message processor retrieves stored messages from its associated message store and tries to resend those messages to the target receiver. The message store and message processor combination acts act as the dead letter channel.
Environment setup
The WSO2 ESB provides two message store types: in In memory and JMS. Users can also define their own custom message store implementations.
- Start the ESB server and log into its management console UI (https://localhost:9443/carbon). I
- In the management console, navigate to the Main menu and select the Message Stores sub menu in the Service Bus section.
- Create a new message store. In this example, we create
test-msg-store
.Anchor create-msg-store create-msg-store
- Define a message processor called
test-msg-processor
as follows: - Define an endpoint called
SimpleStockQuoteService
, and set it as thetarget.endpoint
property. The store mediator uses it when storing the message into the message store.
ESB configuration
Navigate to Main Menu, click Service Bus and then Source View. Next, copy and paste the following configuration, which helps you explore the example scenario, to the source view.
...
Code Block | ||||
---|---|---|---|---|
| ||||
<definitions xmlns="http://ws.apache.org/ns/synapse"> <registry provider="org.wso2.carbon.mediation.registry.WSO2Registry"> <parameter name="cachableDuration">15000</parameter> </registry> <proxy name="StockQuoteProxy" transports="https http" startOnLoad="true" trace="disable"> <description/> <target> <endpoint> <address uri="http://localhost:9000/services/SimpleStockQuoteService"/> </endpoint> <inSequence> <log level="full"/> </inSequence> <outSequence> <log level="full"> <property name="MSG" value="Response...."/> </log> <send/> </outSequence> <faultSequence> <log level="full"> <property name="MSG" value="++++++++++FAULT---------...."/> </log> <property name="target.endpoint" value="SimpleStockQuoteService"/> <store messageStore="test-msg-store"/> </faultSequence> </target> <publishWSDL uri="http://localhost:9000/services/SimpleStockQuoteService?wsdl"/> </proxy> <endpoint name="SimpleStockQuoteService"> <address uri="http://localhost:9000/services/SimpleStockQuoteService"/> </endpoint> <sequence name="fault"> <log level="full"> <property name="MESSAGE" value="Executing default 'fault' sequence"/> <property name="ERROR_CODE" expression="get-property('ERROR_CODE')"/> <property name="ERROR_MESSAGE" expression="get-property('ERROR_MESSAGE')"/> </log> <drop/> </sequence> <sequence name="main"> <in> <log level="full"/> <filter source="get-property('To')" regex="http://localhost:9000.*"> <send/> </filter> </in> <out> <send/> </out> <description>The main sequence for the message mediation</description> </sequence> <messageStore name="test-msg-store"/> <messageProcessor class="org.apache.synapse.message.processors.forward.ScheduledMessageForwardingProcessor" name="test-msg-processor" messageStore="test-msg-store"> <parameter name="interval">1000</parameter> <parameter name="max.deliver.attempts">100</parameter> </messageProcessor> </definitions> |
How the implementation works
Let's investigate the elements of the ESB configuration in detail. The line numbers below are mapped to the ESB configuration shown above.
faultSequence - The fault sequence. The proxy service
StockQuoteProxy
runs in the event of a fault or error.store - The store mediator loads the message store defined in line 53.
messageStore - Defines the message store to use, which we created using the ESB management console in step 2 above.
messageProcessor - The
messageProcessor
defines the processing algorithm, the period of time to retry sending messages in case of a failure, and the maximum number of retry attempts.
Simulating the sample scenario
Now, let's try out the example scenario explained above.
Setting up the environment
You need to set up the ESB, and the back-end service:
- Download the Dead-Letter-Channel.zip, which includes the ESB configuration described above.
See Setting up the Environment for instructions on setting up the ESB and the back-end service.
Info When you set up the environment, note that you only need to start one instance of the back-end service (Stock Quote Service) to simulate this example.
Executing the sample
- Start the sample Axis2 server with
SimpleStockQuoteService
deployed. For instructions, refer to the section Setting Up the ESB Samples - Starting the Axis2 server in the WSO2 ESB documentation. Use SoapUI or WSO2 ESB's Try It tool to send the following request to the
getSimpleQuote
function ofStockQuoteProxy
service. For information about the Stock Quote client, refer to the section Sample Clients in the WSO2 ESB documentation.the
Code Block <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://services.samples"> <soapenv:Header/> <soapenv:Body> <ser:getSimpleQuote> <!--Optional:--> <ser:symbol>IBM</ser:symbol> </ser:getSimpleQuote> </soapenv:Body> </soapenv:Envelope>
- A message similar to the one below appears in the simple Axis server.
- Stop the Axis server, and resend the same request. Note that the message sending fails, and the message processor tries to resend the message every few seconds.
- Restart the Axis server, and note that the message will be delivered to
SimpleStockQuoteService
once the server is running.
How the implementation works
Let's investigate the elements of the ESB configuration in detail. The line numbers below are mapped with the ESB configuration shown above.
...
- .
...
store [line 25 in ESB config] - The store mediator loads the message store defined in line 53.
...
messageStore [line 53 in ESB config] - Defines the message store to use, which we created using the ESB management console in step 2 above.
...