lriverahonores
IS-IT--Management
To create a connection to MQ to write a message in a remote queue:
write = new MQConn("localhost", 'QMB2MPROD', 'CLIENT.B2M.CANAL', null, 0, 'B2M.SOUTHERN.COLA.SALIDA', MQC.MQOO_FAIL_IF_QUIESCING | MQC.MQOO_OUTPUT | MQC.MQOO_ALTERNATE_USER_AUTHORITY);
this line of the program failed at the same time that other connection to MQ was created.
Why did it happen? Do MQ support threads? concurrent connections?
write = new MQConn("localhost", 'QMB2MPROD', 'CLIENT.B2M.CANAL', null, 0, 'B2M.SOUTHERN.COLA.SALIDA', MQC.MQOO_FAIL_IF_QUIESCING | MQC.MQOO_OUTPUT | MQC.MQOO_ALTERNATE_USER_AUTHORITY);
this line of the program failed at the same time that other connection to MQ was created.
Why did it happen? Do MQ support threads? concurrent connections?