How to start ActiveMq broker from spring xml configuration?
Hi,
I'm trying to deploy and application hosted within Tomcat that has active JMS queue(s). The goal is to be able to send messages from a remote client.
This is my connection factory settings:
<!-- JMS ConnectionFactory to use -->
<bean id="jmsFactory" class="org.codehaus.activemq.ActiveMQConnectionFac tory">
<property name="brokerURL">
<!--<value>vm://localhost</value>-->
<value>tcp://localhost:61616</value>
</property>
</bean>
The problem is, where do I call the start() function?
Thanks for helping!