Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Documentation/JMSBroker/ActiveMQ"

(Removing all content from page)
 
Line 1: Line 1:
== ActiveMQ Broker==
 
  
SMILA contains integrated [[http://activemq.apache.org | ActiveMQ core]] JMS Message Broker.
 
It's classes contained in the "org.apache.activemq.core" bundle. Instance of broker started by the bundle "org.eclipse.smila.connectivity.queue.broker.main".
 
 
== Configuration ==
 
 
Embedded broker started by starting JNDI Context by properties loaded from the file "configuration/org.eclipse.smila.connectivity.queue.broker.main/jms.properties"
 
 
Sample properties
 
<source lang="java">
 
java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory
 
java.naming.provider.url=vm:(broker:(tcp://localhost:61616?jms.useAsyncSend=true)?persistent=true)?marshal=false
 
</source>
 
 
More information about configuration can be found on the [[http://activemq.apache.org/jndi-support.html | ActiveMQ jndi-support page ]] and [[http://activemq.apache.org/vm-transport-reference.html | ActiveMQ vm-transport-reference]] pages.
 
[[Category:SMILA]]
 

Latest revision as of 06:46, 25 January 2012

Back to the top