HornetQ JMS ConnectionFactory Configuration: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal=") |
|||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[WildFly HornetQ-Based Messaging Subsystem Configuration|Configuration]] | |||
=Overview= | |||
<pre> | |||
<subsystem xmlns="urn:jboss:domain:messaging:1.4"> | |||
<hornetq-server> | |||
... | |||
<jms-connection-factories> | |||
... | |||
<connection-factory name="RemoteConnectionFactory"> | |||
<ha>true</ha> | |||
<retry-interval>1000</retry-interval> | |||
<retry-interval-multiplier>1.0</retry-interval-multiplier> | |||
<reconnect-attempts>-1</reconnect-attempts> | |||
<block-on-acknowledge>true</block-on-acknowledge> | |||
<connectors> | |||
<connector-ref connector-name="netty"/> | |||
</connectors> | |||
<entries> | |||
<entry name="java:jboss/exported/jms/RemoteConnectionFactory"/> | |||
</entries> | |||
</connection-factory> | |||
... | |||
</jms-connection-factories> | |||
... | |||
</hornetq-server> | |||
</subsystem> | |||
</pre> | |||
=Configuration Elements= | |||
== |
Revision as of 23:42, 11 April 2016
Internal
Overview
<subsystem xmlns="urn:jboss:domain:messaging:1.4"> <hornetq-server> ... <jms-connection-factories> ... <connection-factory name="RemoteConnectionFactory"> <ha>true</ha> <retry-interval>1000</retry-interval> <retry-interval-multiplier>1.0</retry-interval-multiplier> <reconnect-attempts>-1</reconnect-attempts> <block-on-acknowledge>true</block-on-acknowledge> <connectors> <connector-ref connector-name="netty"/> </connectors> <entries> <entry name="java:jboss/exported/jms/RemoteConnectionFactory"/> </entries> </connection-factory> ... </jms-connection-factories> ... </hornetq-server> </subsystem>
Configuration Elements
==