Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here are some example URIs

URI

Description

Code Block
xslt:com/acme/mytransform.
xslt
xsl

refers to the file com/acme/mytransform.xslt xsl on the classpath

Code Block
xslt:
file:///foo/bar.xsl
Image Removed

refers to the file /foo/bar.xsl

Code Block
xslt:
http://acme.com/cheese/foo.xsl
Image Removed

refers to the remote http resource

...

Code Block
from("activemq:My.Queue").
  to("xslt:com/acme/mytransform.xsltxsl");

To use a xslt template to forumulate a response for a message for InOut message exchanges (where there is a JMSReplyTo header).

...

Code Block
from("activemq:My.Queue").
  to("xslt:com/acme/mytransform.xsltxsl").
  to("activemq:Another.Queue");

...