Overview
This document describes the configuration of connection factories,
i.e.
Connection factories are bound in JNDI by the OpenJMS server, to make them available to clients. Configuring Connection FactoriesConnection factories are configured in the $OPENJMS_HOME/config/openjms.xml file. E.g: <Connectors> <Connector scheme="rmi"> <ConnectionFactories> <QueueConnectionFactory name="QueueCF"/> <TopicConnectionFactory name="TopicCF"/> <XAQueueConnectionFactory name="XAQueueCF"/> <XATopicConnectionFactory name="XATopicCF"/> </ConnectionFactories> </Connector> </Connectors> In the above, four connection factories will be bound in JNDI:
Notes:
See AlsoFor more details, see the ConnectionFactories configuration reference. |