Latest Tutorials provided by IBM for simple PRODUCE and CONSUME to IBM MQ 8/9 are pretty easy to implement.
Currently we have to figure out, how to read/receive Messages from one IBM MQ 8 Manager Queue out of an existing application.
Following setup:
- IBM MQ 8
- Applicationserver with Application running, which needs to access the MQ: TomEE 1.7.4 plus
- No WebSphere
- No JNDI
My expectation here is, that this will not work:
- IBM MQ 8 needs JMS 2.0 features to connect
- which needs Java EE 7
- while TomEE 1.7.4 plus is Java EE 6 compatible (TomEE 7.x would be Java EE 7 compatible)
I would appreciate any help especially pointing me to an IBM MQ JMS implementation deployable to TomEE 1.7.x, using straight forward parameters for host, Q-Manager, Channel, Queue, User without JNDI.
Update#1: One good tutorial to create a simple consumer or producer for IBM MQ (working with 8 and 9) https://developer.ibm.com/messaging/learn-mq/mq-tutorials/develop-mq-jms/
Update#2: As expected, integrating this with TomEE 7.x seems to work fine. Unfortunately migrating the whole infrastructure and application dependencies is not an option to resolve it this way...