C/C++
cppmqs.txt
Associated article: A C++ Library for IBM MQSeries
Tags: C/C++
Published source code accompanying the article by Jack Woehr in which he presents SoftWoehr, an open source C++ class library that encapsulates IBM's MQSeries C language bindings. Also see JXMQV1P0.ZIP.
A C++ Library for IBM MQSeries
by Jack J. Woehr
Listing One
#include "jaxmq.hpp"
using namespace SoftWoehr;
// ...
/* A queue mgr to work with */
MQQueueManager mq_queue_manager;
/* Connect to our queue manager */
try {
mq_queue_manager.connect(&...


