Ok, I got this one. My ActiveMQ installation does not contain camel-jdbc.jar. It runs fine now but it gives me "Failed to execute main task. Reason: java.lang.NoClassDefFoundError: org/springframework/aop/support/AopUtils". Copied spring-aop-2.5.1.jar
Ok, now: Caused by: org.apache.camel.RuntimeCamelException: A JDBC Consumer would be the server side of database! No such support here at org.apache.camel.component.jdbc.JdbcEndpoint.createConsumer(JdbcEndpoint.java:56) Hmm, I remember seeing this exception in the source code but I do not understand it. why <from uri="jdbc:msServiceBroker" /> tries to create a consumer. I thought that "from" is a message producer, right? On Wed, Jul 2, 2008 at 12:33 PM, Vadim Chekan <[EMAIL PROTECTED]> wrote: > Here is my progress: > First of all it complained about DriverManagerDataSource class so I've > downloaded spring-jdbc-2.5.1.jar and put it to lib/optional > Now I'm getting > ======================================= > Caused by: org.apache.camel.NoSuchEndpointException: No endpoint could be > found > for: jdbc:msServiceBroker > at > org.apache.camel.util.CamelContextHelper.getMandatoryEndpoint(CamelCo > ======================================= > > My configuration is: > =============================================================== > <camelContext id="camel" > xmlns="http://activemq.apache.org/camel/schema/spring"> > <route> > <from uri="jdbc:msServiceBroker" /> > <to uri="activemq:aspcust1" /> > </route> > </camelContext> > > <bean id="msServiceBroker" > class="org.springframework.jdbc.datasource.DriverManagerDataSource"> > <property name="driverClassName" > value="net.sourceforge.jtds.jdbc.Driver"/> > <property name="url" > value="jdbc:jtds:sqlserver://aspcust1/LogQueue;instance=main"/> > <property name="username" value="****"/> > <property name="password" value="****"/> > </bean> > =============================================================== > > I thought that it it the way this thing works: after jdbc uri you > specify a bean, but apparently I got it wrong. I'm trying to define > endpoint explicitly now withing camel context. > Any help please? > > BTW: there is an error in schema location in default configuration > file: http://activemq.apache.org/schema/core/activemq-core.xsd does > not exist. I had to change it to > http://activemq.apache.org/schema/core/activemq-core-5.1.0.xsd to make > my Visual Studio hints working ;) > > -- > From RFC 2631: In ASN.1, EXPLICIT tagging is implicit unless IMPLICIT > is explicitly specified > -- >From RFC 2631: In ASN.1, EXPLICIT tagging is implicit unless IMPLICIT is explicitly specified
