Why and when to perform this task
An interruptible process runs asynchronously. Its output message is not automatically returned when the process completes. The message must be retrieved explicitly. You can get the results of the process only if you specified a JMSReplyToQueue and used the call verb to instantiate the process.Steps for this task
Message m = queueReceiver.receive(); if (m instanceof ObjectMessage) { ClientObjectWrapper wrapper = (ClientObjectWrapper)m.getObject(); OrderNo output = (OrderNo)wrapper.getObject(); }