]
Jiri Ondrusek moved JBEAP-14200 to WFLY-9762:
---------------------------------------------
Project: WildFly (was: JBoss Enterprise Application Platform)
Key: WFLY-9762 (was: JBEAP-14200)
Workflow: GIT Pull Request workflow (was: CDW with loose statuses v1)
Component/s: (was: ActiveMQ)
Affects Version/s: (was: 7.1.0.CR1)
JMS message is not received when using a non-transactional
JMSConnectionFactoryDefinition
-----------------------------------------------------------------------------------------
Key: WFLY-9762
URL:
https://issues.jboss.org/browse/WFLY-9762
Project: WildFly
Issue Type: Bug
Reporter: Jiri Ondrusek
Assignee: Jiri Ondrusek
When using a JMSConnectionFactoryDefinition annotation, and specifying a non
transactional connection factory, message is not being sent (or at least received by MDB).
Example:
{code:java}
@JMSConnectionFactoryDefinitions(
value = {
@JMSConnectionFactoryDefinition(
name = "java:app/jms/nonXAconnectionFactorySample",
transactional = false,
properties = {
"connectors=in-vm",}
)
}
)
{code}
When using an MDB message isn't received. Removing "transactional"
attribute makes it work again.