This section describes how to configure the WSO2 ESB's JMS transport with WSO2 Message Broker (MB). It facilitates message brokering needs of the ESB and helps implement the store and forward messaging pattern.
...
1. Download and install WSO2 MB binary distribution. Instructions can be found in the Installation Guide in the Message Broker Installation Guidedocumentation. The unzipped MB distribution folder will be referred to as <MB_HOME>.
...
Info | ||
---|---|---|
| ||
This section uses the embedded Cassandra server for configuration. However, in a production setup, using an external Cassandra server that is capable of handling large volumes of queues is recommended. For information on setting up WSO2 MB with an external server, see the Deployment Guide in the Message Broker Deployment Guide Documentation. |
Code Block | ||
---|---|---|
| ||
<store> <class>org.wso2.andes.server.store.CassandraMessageStore</class> <username>admin</username> <password>admin</password> <cluster>ClusterOne</cluster> <idGenerator>org.wso2.andes.server.cluster.coordination.TimeStampBasedMessageIdGenerator</idGenerator> <connectionString>localhost:9161</connectionString> </store> |
...
Info | ||
---|---|---|
| ||
For details of JMS configuration parameters used in the code segments above, see JMS Connection Factory Parameters. |
...