Add dockerfiles
This commit is contained in:
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Explorer-LinuxX64.tar.gz
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Explorer-LinuxX64.tar.gz
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Install-Java-All.jar
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Install-Java-All.jar
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Java-InstallRA.jar
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Java-InstallRA.jar
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Sigs-Certs.tar.gz
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQ-Sigs-Certs.tar.gz
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQC-LinuxX64.tar.gz
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQC-LinuxX64.tar.gz
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQC-Redist-LinuxX64.tar.gz
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQC-Redist-LinuxX64.tar.gz
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQC-UbuntuLinuxX64.tar.gz
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQC-UbuntuLinuxX64.tar.gz
Normal file
Binary file not shown.
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQIPT-LinuxX64.tar.gz
Normal file
BIN
rln/ubi9/mq/9.4.1.0-IBM-MQIPT-LinuxX64.tar.gz
Normal file
Binary file not shown.
13
rln/ubi9/mq/pymqi-binding.py
Normal file
13
rln/ubi9/mq/pymqi-binding.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import pymqi
|
||||
|
||||
queue_manager = 'QM1'
|
||||
queue_name = 'DEV.QUEUE1'
|
||||
message = 'Hello from Python!'
|
||||
|
||||
qmgr = pymqi.connect(queue_manager)
|
||||
|
||||
queue = pymqi.Queue(qmgr, queue_name)
|
||||
queue.put(message)
|
||||
queue.close()
|
||||
|
||||
qmgr.disconnect()
|
||||
17
rln/ubi9/mq/pymqi-tcp.py
Normal file
17
rln/ubi9/mq/pymqi-tcp.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import pymqi
|
||||
|
||||
queue_manager = 'QM1'
|
||||
channel = 'DEV.APP.SVRCONN'
|
||||
host = '192.168.50.155'
|
||||
port = '1414'
|
||||
queue_name = 'DEV.QUEUE1'
|
||||
message = 'Hello from Python!'
|
||||
conn_info = '%s(%s)' % (host, port)
|
||||
|
||||
qmgr = pymqi.connect(queue_manager, channel, conn_info)
|
||||
|
||||
queue = pymqi.Queue(qmgr, queue_name)
|
||||
queue.put(message)
|
||||
queue.close()
|
||||
|
||||
qmgr.disconnect()
|
||||
Reference in New Issue
Block a user