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