This page was last edited on October 27, 2023, at 04:25.
Comments or questions about this documentation? Contact us for support!
You can use the JMS Event Logger with Apache ActiveMQ to process reporting events using a JMS queue.
To enable the JMS Event Logger with Apache ActiveMQ, edit the option delivery-protocol and set the value to jms.
java.naming.factory.initial = org.apache.activemq.jndi.ActiveMQInitialContextFactory
java.naming.provider.url = tcp://activemq_host:61616
connectionFactoryNames = ConnectionFactory
queue.InxEventLogQueue = InxEventLogQueue
queue.inbound = inx.inbound
queue.error = inx.error
queue.processed = inx.processed
queue.notification = inx.notification
<transportConnectors>
...
<transportConnectorname="ssl"uri="ssl://0.0.0.0:61617?trace=true&needClientAuth=true"/>
...
</transportConnectors>
<sslContext>
<sslContextkeyStore="file:${activemq.base}/conf/cert.jks"
keyStorePassword="YourKeyStorePassword"
trustStore="file:${activemq.base}/conf/truststore.jks"
trustStorePassword="YourTrustStorePassword"/>
</sslContext>