I have wrote a basic Message Transformer to Transform object messages to Text messages. I am not Java/OpenMQ/Glassfish Expert
The Transformer compiles fine BUT now I need to configure the STOMP Bridge to use it... I cant find any examples online on how to do it.
I copied my StompTransformer.class to C:\glassfish3\glassfish\domains\domain1\lib\ext and All the required jars to: C:\glassfish3\glassfish\domains\domain1\lib\applibs (not sure if this is the right place)
I added the following into config.properties:
imq.bridge.admin.user=admin
imq.bridge.stomp.messageTransformer=StompTransformer
imq.bridge.admin.password=admin
imq.bridge.activelist=stomp
imq.bridge.enabled=true
I tried to read the documentation: https://docs.oracle.com/cd/E19587-01/821-0027/gjdnl/index.html >>> Configuring a JMS Bridge
but it is confusing to me :( I don't know what should be in the XML file, what it should be called, where I should put it and what else is needed for configuration.....
Here is the code for the Transformer:
import java.util.*;
import javax.jms.*;
import com.sun.messaging.bridge.service.MessageTransformer;
import com.thoughtworks.xstream.XStream;
public class StompTransformer extends MessageTransformer <Message, Message> {
public Message transform(Message message,
boolean readOnly,
String charsetName,
String source,
String target,
Properties properties)
throws Exception {
Message m = message;
if (source.equals(SUN_MQ)) { //from Java Message Queue to STOMP client
if (message instanceof ObjectMessage) {
//create a new TextMessage for message to be transformed to
TextMessage tm = (TextMessage)createJMSMessage(JMSMessageType.TEXTMESSAGE);
//convert message to the TextMessage
XStream xstream = new XStream();
tm.setText(xstream.toXML(message));
m = tm;
}
}
return m;
}
}
With OpenMQ 4.5.2 (running stand-alone, not embedded in GlassFish) I tested the message transformation with this project
And this transformer class:
The generated JAR must be in the lib/ext directory together with other required dependency Jars (note that this has been tested with a stand-alone Open MQ installation).
and this broker configuration for the STOMP bridge:
Then I started a STOMP client listening for incoming messages in queue TOOL.DEFAULT, and used a JMS client to generate object messages:
If the JMS client code sends an object message while the STOMP client is listening, the console window where the broker runs successfully writes the
message. But then it logs an error, complaining about a null JMS destination:
I have not investigated this further, but it looks like more code is required to construct the transformed message than is shown in the OpenMQ JavaDoc for the transformer.
But test results show that the transformer is called and the provided example can be used as a starting point.
Update:
If the system architecture is under your control, then it might be easier to insert a Java (JMS) client application in the message flow, which transforms the object message to a text message and re-sends it to a distinct destination, which the STOMP client consumes.