I'm using the URI syntax to create an http endpoint using the jetty component:
<camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring"> <route> <from uri="jetty:http://localhost:8080/bus" /> <to uri="file://C:/tmp/something.xml" /> </route> </camelContext> This exception arises: org.apache.camel.RuntimeCamelException: org.apache.camel.NoSuchEndpointException: No en dpoint could be found for: jetty:http://localhost:8080/bus Something I'm missing here? I'm Using ActiveMQ 5.0 and Apache Camel 1.3-SNAPSHOT -- View this message in context: http://www.nabble.com/Problems-with-httpEndpoint-tp16297083s22882p16297083.html Sent from the Camel - Users mailing list archive at Nabble.com.
