All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.jms.jms-bridge.server1.hornetq-configuration.xml Maven / Gradle / Ivy

The newest version!
 <configuration xmlns="urn:hornetq"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="urn:hornetq /schema/hornetq-configuration.xsd">

   <connectors>
      <connector name="netty">
         <factory-class>org.hornetq.core.remoting.impl.netty.NettyConnectorFactory</factory-class>
         <!-- **************************************** -->
         <!-- Replace with the *target* server address -->
         <!-- **************************************** -->
         <param key="host" value="@TARGET_SERVER@"/>
      </connector>
   </connectors>

   <acceptors>
      <acceptor name="netty">
         <factory-class>org.hornetq.core.remoting.impl.netty.NettyAcceptorFactory</factory-class>
         <!-- the server accepts connections on all the server addresses -->
         <param key="host" value="0.0.0.0"/>
      </acceptor>
   </acceptors>

   <security-settings>
         <security-setting match="jms.#">
            <permission type="consume" roles="guest"/>
            <permission type="send" roles="guest"/>
            <permission type="createNonDurableQueue" roles="guest"/>
            <permission type="deleteNonDurableQueue" roles="guest"/>
         </security-setting>
    </security-settings>
</configuration>
 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy