Hello,
I am simply using the mentioned example. It uses a transform tag: could it
use smooks? However, I have modified the config in the following way, and I
still have the same error. I have another question: how could I deploy an
integration not involving servlets (so, not requiring a war archive)?
* 
<beans xmlns="http://www.springframework.org/schema/beans";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:camel="http://camel.apache.org/schema/spring";
       xsi:schemaLocation="
         http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
         http://camel.apache.org/schema/spring
http://camel.apache.org/schema/spring/camel-spring.xsd";>

 <camelContext xmlns="http://camel.apache.org/schema/spring";>

    <route id="helloRoute">
      
      <from uri="servlet:///hello"/>
      <choice>
        <when>
          
          <header>name</header>
          
          
        <to uri="file:/home/nicoletta/test1"/>
        </when>
        <otherwise>
          
         
        <to uri="file:/home/nicoletta/test2"/>
        </otherwise>
      </choice>
    </route>

  </camelContext>

</beans>*



--
View this message in context: 
http://camel.465427.n5.nabble.com/deploying-Camel-integrations-in-Jboss-tp5748289p5748302.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to