You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by loganathan <lo...@gmail.com> on 2013/07/04 19:37:45 UTC

Need help for configuring scaling and Network connectors in activemq

I need to implement  scaling(Horizontal ,vertical) and  broker to broker
communication network connectors in activemq .Actually we are using vm
broker url in the xml file. After I gone through activemq documents I came
to  know peer protocol functionality is similar to vm protocol for
establishing network connectors  correct  me if my understanding is wrong.As
of now the following code I have in activemq.xml file along with this I need
to configure scaling and network connectors in the same file for peer
protocol.Especially I need to know what I need to configure under transport
connectors and network connectors in the xml file.can anyone help me to move
forward.

<bean id ="amqConnectionFactory" 
                class="org.apache.activemq.ActiveMQConnectionFactory">
                <property name="brokerURL" 
                        value="vm://brokerexample" />
                        <property name="userName" value="publisher" />
                <property name="password" value="password" />
        </bean>

<amq:broker start="true" persistent="true" 
                brokerName="brokerexample" 
                deleteAllMessagesOnStartup="false" >

<amq:transportConnectors>
                        <amq:transportConnector name="tcp" 
                                uri="vm://brokerexample"/>
                </amq:transportConnectors>
<amq:networkConnectors>
<amq:networkConnectors>
        </amq:broker>
</beans>




--
View this message in context: http://activemq.2283324.n4.nabble.com/Need-help-for-configuring-scaling-and-Network-connectors-in-activemq-tp4668886.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.