I have been searching the INTERNET extensively for a way to use web-sphere MQ in Apache Apex to stream the MQ message through and into a DAG. However, there seems to be no IBM documentation on the matter.
I know it might be similar to ActiveMQ and I might just need to pass in the websphere Jars, however I do not know where to start.
@Override
public void populateDAG(DAG dag, Configuration conf)
{
JMSStringInputOperator amqInput = dag.addOperator("amqIn",
new JMSStringInputOperator());
LineOutputOperator out = dag.addOperator("fileOut", new LineOutputOperator());
dag.addStream("data", amqInput.output, out.input);
}