Hi Nagesh/David

Hope you have not completed the mailing list formalities.

Anyhow ,

I think there are some syntax level bug. by the way, Please let me know how
you deployed the code you wrote. 

Find my example to help out for yourself.

My scenario:
Directory(XML File)->QUEUE->XSLT(Got
transformed)->QUEUE->Directory(Transformed XML)

<?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"/>
        </route>

     
     </camelContext>
</blueprint> 


I used camel. this should run in SMX4/Fuse4.4 .

Revert for queries. 

Thank nagesh/david


Regards
Guru

-----
Cheers
 Guru
--
View this message in context: 
http://servicemix.396122.n5.nabble.com/Reg-basic-set-up-of-Apache-service-mix-tp4793735p4793942.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.

Reply via email to