0
votes

I am trying to find out if anyone knows of a simple tutorial that does something like the following steps:

  1. Send xml message to activemq topic
  2. Transform message in topic with xslt
  3. Send transformed message to second topic
  4. 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!

2

2 Answers

2
votes

Adding to Romins answer, specifically transforming the message with XSLT is trivial and described in detail in the camel xslt docs.

You seem to have done the other parts.

2
votes

Here are a list of resources and you should be able to find your way to the article that helps you out in what you want to do.