5 Replies Latest reply on Nov 25, 2013 7:54 PM by kcbabo

    camel-mvel - "No component found with scheme: mvel"

    magick93

      Hi

       

      I'm trying to write a switchyard application (using SY 1.0) that will use camel-mvel.

       

      I've added the camel-mvel dependency (2.10.0).

       

      However, we I run my test, I get the following error:

      Failed to create route route1 at: >>> To[mvel:MyResponse.mvel] <<< in route: Route[[From[switchyard://EmailService]] -> [Log[EmailService... because of Failed to resolve endpoint: mvel://MyResponse.mvel due to: No component found with scheme: mvel

       

      My camel route looks like this:

      <?xml version="1.0" encoding="ASCII"?>
      <routes xmlns="http://camel.apache.org/schema/spring">
          <route>
              <from uri="switchyard://EmailService"/>
              <log message="EmailService - message received:"/>
              <to uri="mvel:MyResponse.mvel"/>
          </route>
      </routes>
      
      

       

      Is there something more I need to do to be able to use camel components?

       

      Thanks