Hi
I am new to synapse. I have written a simple xml transformation code in
servicemix . Now i want to try a similar thing with synapse. I got
completely confused. FYI i wrote the xml transformation code using
camel-blueprint feature in servicemix .
by the way for undestanding the scenario of mine, i am putting my smx code
here
code:
<?xml version="1.0" encoding="UTF-8"?>
<blueprint
xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.osgi.org/xmlns/blueprint/v1.0.0
http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd">
<camelContext xmlns="http://camel.apache.org/schema/blueprint"
trace="true">
<route>
<from uri="file://inputdir/"/>
<to uri="activemq:queue:inputQueue"/>
</route>
<route>
<from uri="activemq:queue:inputQueue"/>
<to
uri="xslt:file:C:\ESB\Fuse_ESB_4.4\apache-servicemix-4.4.0-fuse-00-27\design.xsl"/>
<to uri="activemq:queue:outputQueue"/>
</route>
<route>
<from uri="activemq:queue:outputQueue"/>
<to uri="file:outputdir?fileName=output.xml"/>
</route>
</camelContext>
</blueprint>
Kindly help out to understand and write a code in synapse. such that
preferably which is the good place to start with..
Thanks in advance
Cheers
Guru
--
View this message in context:
http://old.nabble.com/Synapse-XSLT-Deployment-issue-tp32043562p32043562.html
Sent from the Synapse - User mailing list archive at Nabble.com.