Hello,

What is the endpoint that is not found? This exception is at runtime right? So 
I'm assuming all is deploying correctly.

The bean su that you gave in your last e-mail was the jms-su. The jms su seemed 
all right to me.

Your flow is Timer -> jms-provider -> jms consumer -> bean right? Obviously you 
don't need JMS but I guess you want to build up something.

And btw, why do you use a JMS marshaler?


Regards
Vivian


-----Message d'origine-----
De : KenBarnesJr [mailto:[email protected]] 
Envoyé : mercredi 2 septembre 2009 19:08
À : [email protected]
Objet : RE: Servicemix Bean camel jms little help


I keep getting could not find route for exchange inOnly

It has something to do with this

from("timer://tutorial?fixedRate=true&delay=3000&period=10000")             
            .setBody(constant("<message>Hello world!</message>"))               
         
            .to("jbi:endpoint:http://barnes/test/jms/provider";); 

where this is the jms

 xmlns:test="http://barnes/test";
       xmlns:amq="http://activemq.org/config/1.0";>

    <jms:provider service="test:jms"
                  endpoint="provider" 
                  destinationName="test.queue"
                  connectionFactory="#connectionFactory"/>

    <jms:consumer service="test:jms"
        endpoint="consumer"
        destinationName="test.queue"
        connectionFactory="#connectionFactory"
        marshaler="#marshaler"
        targetService="test:beanService"
        targetEndpoint="beanPoint"  />

    <bean id="marshaler"
class="org.apache.servicemix.jms.endpoints.DefaultConsumerMarshaler">
        <property name="mep" value="http://www.w3.org/2004/08/wsdl/in-out"; />
    </bean>
--
View this message in context: 
http://www.nabble.com/Servicemix-Bean-camel-jms-little-help-tp25257646p25261628.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.

Reply via email to