Integrating RabbitMQ with Pega Platform 8.8.1
Hi,
We have a requirement to integrate RabbitMQ with PegaPlatform
I followed all the steps mentioned in the below Post but its not working
https://support.pega.com/question/integration-rabbitmq
The main issue here us that in JMSProperties tab in JMSListenerForm, there are no values coming in the dropdown for pyConnectionFactory and pyResourceName fields.
I have added the below resources in Context.xml in ...\tomcat\conf\context.xml
<Resource name="jms/ConnectionFactory" type="javax.jms.ConnectionFactory" factory="com.rabbitmq.jms.admin.RMQObjectFactory" username="pega" password="jms" virtualHost="/" host="rabbit.trt.abc.org"/>
<Resource name="jms/PegaQueue" type="javax.jms.Queue" factory="com.rabbitmq.jms.admin.RMQObjectFactory" destinationName="" amqpExchangeName="pegasystems" amqpRoutingKey="pega.app.*" amqp="true" amqpQueueName="pega"/>
Also placed the following jar files in ..\tomcat\lib
Hi,
We have a requirement to integrate RabbitMQ with PegaPlatform
I followed all the steps mentioned in the below Post but its not working
https://support.pega.com/question/integration-rabbitmq
The main issue here us that in JMSProperties tab in JMSListenerForm, there are no values coming in the dropdown for pyConnectionFactory and pyResourceName fields.
I have added the below resources in Context.xml in ...\tomcat\conf\context.xml
<Resource name="jms/ConnectionFactory" type="javax.jms.ConnectionFactory" factory="com.rabbitmq.jms.admin.RMQObjectFactory" username="pega" password="jms" virtualHost="/" host="rabbit.trt.abc.org"/>
<Resource name="jms/PegaQueue" type="javax.jms.Queue" factory="com.rabbitmq.jms.admin.RMQObjectFactory" destinationName="" amqpExchangeName="pegasystems" amqpRoutingKey="pega.app.*" amqp="true" amqpQueueName="pega"/>
Also placed the following jar files in ..\tomcat\lib
RabbitMQ AMQP Client: https://mvnrepository.com/artifact/com.rabbitmq/amqp-client/5.7.0 RabbitMQ JMS Client: https://search.maven.org/artifact/com.rabbitmq.jms/rabbitmq-jms/1.11.2/jar Sun Filesystem Context: https://mvnrepository.com/artifact/com.sun.messaging.mq/fscontext/4.6-b01 Geronimo JMS Specs: https://mvnrepository.com/artifact/org.apache.geronimo.specs/geronimo-jms_1.1_spec/1.1.1
Also tried this solution
https://community.boomi.com/s/article/Connecting-to-RabbitMQ-Using-the-JMS-Connector
It will be great if I can get some help on this.