[Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property
by tobinibot
Yes, it deployed.
anonymous wrote : 21:38:11,781 INFO [testQueue] Bound to JNDI name: queue/testQueue
| 21:38:11,968 INFO [UILServerILService] JBossMQ UIL service available at : /0.0.0.0:8093
| 21:38:12,015 INFO [DLQ] Bound to JNDI name: queue/DLQ
| 21:38:12,359 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
| 21:38:12,671 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=activemq/QueueConnectionFactory' to JNDI name 'java:activemq/QueueConnectionFactory'
| 21:38:12,687 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=activemq/TopicConnectionFactory' to JNDI name 'java:activemq/TopicConnectionFactory'
| 21:38:12,750 INFO [AdminObject] Bound admin object 'org.apache.activemq.command.ActiveMQQueue' at 'activemq/queue/outbound'
| 21:38:12,937 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
| 21:38:13,546 INFO [Http11BaseProtocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080
| 21:38:13,734 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
|
I'll start going through those other 2 pages. I appreciate your help very, very much. If I have questions (probably tomorrow), do you mind if I just tack the question on to this thread?
Thanks again.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989906#3989906
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989906
18Â years, 1Â month
[Messaging, JMS & JBossMQ] - Re: connectionFactoryJndiName config property
by tobinibot
Got it.
<connection-factories>
|
| <tx-connection-factory>
| <jndi-name>activemq/QueueConnectionFactory</jndi-name>
| <xa-transaction/>
| <track-connection-by-tx/> <!-- Thanks to Adrian Brock for pointing this one out! -->
| <rar-name>activemq-ra-4.0.2.rar</rar-name>
| <connection-definition>javax.jms.QueueConnectionFactory</connection-definition>
| <security-domain-and-application>JmsXARealm</security-domain-and-application>
| </tx-connection-factory>
|
| <tx-connection-factory>
| <jndi-name>activemq/TopicConnectionFactory</jndi-name>
| <xa-transaction/>
| <track-connection-by-tx/> <!-- Thanks to Adrian Brock for pointing this one out too! -->
| <rar-name>activemq-ra-4.0.2.rar</rar-name>
| <connection-definition>javax.jms.TopicConnectionFactory</connection-definition>
| <security-domain-and-application>JmsXARealm</security-domain-and-application>
| </tx-connection-factory>
|
| <mbean code="org.jboss.resource.deployment.AdminObject" name="activemq.queue:name=outboundQueue">
| <attribute name="JNDIName">activemq/queue/outbound</attribute>
| <depends optional-attribute-name="RARName">jboss.jca:service=RARDeployment,name='activemq-ra-4.0.2.rar'</depends>
| <attribute name="Type">javax.jms.Queue</attribute>
| <attribute name="Properties">
| PhysicalName=queue.outbound
| </attribute>
| </mbean>
|
| </connection-factories>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989899#3989899
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989899
18Â years, 1Â month