I am trying to find out if anyone knows of a simple tutorial that does something like the following steps:
- Send xml message to activemq topic
- Transform message in topic with xslt
- Send transformed message to second topic
- log out contents of transformed xml message
I am trying to do the following using camel spring based routing. Any help would be greatly appreciated with this. I currently have a program that sends a simple String to an activemq topic, logs out the contents of the string, and then passes the String to a second topic. So basically I just want to change sending a simple text message to an xml message that is transformed along the way.
Thank you in advance for any help!