The configurations of the Apache Qpid output JMS event adapter are explained below. You can configure it with map, XML, JSON, and text output mapping types.
...
Install Qpid JMS Broker and Qpid JMS Client.
- Add the following Qpid JMS-specific JAR files to
<PRODUCT_HOME>/repository/components/lib/
directory.<ACTIVEMQ_HOME>/lib/geronimo-jms_1.1_spec-1.0.jar
<QPID-CLIENT_HOME>/lib/qpid-client-xxx.jar
<QPID-CLIENT_HOME>/lib/qpid-common-xxx.jar
Configuring the Qpid output JMS event adapter
...
Log in to the product's management console, and click Configure.
- Click Output Event Adaptors in the Event Processor Configs menu, and then click Add Output Event Adaptor.
Enter details as shown in the below example.
Info Refer the
<PRODUCT_HOME>/reposiyory/conf/
file. This example uses Topic Connection Factory. Therefore, the following entry points the default Qpid host to localhost and port to 5672:jndi.properties
connectionfactory.TopicConnectionFactory = amqp://admin:admin@clientid/test?brokerlist='tcp://localhost:5672'
Click Add Event Adaptor.
Anchor | ||||
---|---|---|---|---|
|
...
Create an XML file with the following Qpid output event adapter configurations. Output event adapter implementation must start with
<outputEventAdaptor>
as the root element.Code Block language html/xml <outputEventAdaptor name="QpidJmsOutputAdaptor" statistics="disable" trace="disable" type="jms" xmlns="http://wso2.org/carbon/eventadaptormanager"> <property name="java.naming.provider.url">repository/conf/jndi.properties</property> <property name="java.naming.factory.initial">org.apache.qpid.jndi.PropertiesFileInitialContextFactory</property> <property name="transport.jms.ConnectionFactoryJNDIName">TopicConnectionFactory</property> <property name="transport.jms.DestinationType">topic</property> </outputEventAdaptor>
Add the XML file to the
<PRODUCT_HOME>/repository/deployment/server/outputeventadaptors/
directory. Since hot deployment is enabled, you can simply add/remove files to deploy/undeploy to/from the server.
Info |
---|
After an adapter is successfully added, it gets added to the list of adapters displayed under Event Processor Configs in the Configure menu of the product's management console. Click Edit to change its configuration and redeploy it. This opens an XML-based editor allowing you to edit the event adapter configurations from the UI. Do your modifications and click Update. You can also delete it, enable/disable statistics or enable/disable tracing on it using the provided options in the UI. |
Configuring output JMS event adapter message properties
Excerpt | ||
---|---|---|
| ||
NOTE TO WRITERS: Link "Configuring Output JMS Event Adapter Message Properties" of the above text to the page titled the same. |