Reputation: 31
Jboss EAP 7.1, standalone.xml
, using IBM MQ, no outbound / no outgoing message
Is it right that standalone.xml
/ urn:jboss:domain:resource-adapters-section
can be empty, if my application has no outgoing messages (only reads messages from MQ) ?
Upvotes: 1
Views: 483
Reputation: 31
Is it right that standalone.xml / urn:jboss:domain:resource-adapters-section can be empty, if my application has no outgoing messages (only reads messages from MQ) ?
-> No, wmq.jmsra.rar has to be configured:
<subsystem xmlns="urn:jboss:domain:resource-adapters:5.0">
<resource-adapters>
<resource-adapter id="wmq.jmsra.rar">
<archive>
wmq.jmsra.rar
</archive>
<transaction-support>LocalTransaction</transaction-support>
<connection-definitions>
</connection-definitions>
<admin-objects>
</admin-objects>
</resource-adapter>
</resource-adapters>
</subsystem>
Upvotes: 1
Reputation: 1045
Please try using the standalone-full.xml. The standalone.xml configuration does not include JMS messaging. The embedded JMS broker in JBoss can be disabled (if desired) by providing an empty configuration for ActiveMQ.
Upvotes: 0