Re: Monitoring Routes/Messages

2011-10-24 Thread Michael Dewitte
What do you specifically want to do ? Just see the route graphically or see the route AND see some stats and message content for each node ? Mike 2011/10/24 sparktronics > visualizing the flow it is something really needed. How can I help if I > would > like to develop the tracer from a visual

Re: Intercept on all "from" in all routes

2011-10-19 Thread Michael Dewitte
Mike 2011/10/19 Claus Ibsen > On Wed, Oct 19, 2011 at 10:38 AM, Michael Dewitte > wrote: > > Hi, > > > > I'm using SMX 4.3 with Camel 2.6 > > > > I'm trying to have automatic processing done when we receive any message > in > > any route

Intercept on all "from" in all routes

2011-10-19 Thread Michael Dewitte
Hi, I'm using SMX 4.3 with Camel 2.6 I'm trying to have automatic processing done when we receive any message in any route. The purpose is to have a single correlationId to track the incoming message if it undergoes several routes that can even be in several camelcontext (those routes can be depl

Re: Routing from restlet to activemq

2011-04-06 Thread Michael Dewitte
Ah ! thanks, it worked ! ;-) Mike 2011/4/6 Björn Bength > Hi, > you should be able to use > > > or use at > > > On Tue, Apr 5, 2011 at 2:44 PM, Michael Dewitte > wrote: > > Hi, > > > > I'd like to have a rest interface for my c

Routing from restlet to activemq

2011-04-05 Thread Michael Dewitte
Hi, I'd like to have a rest interface for my clients to publish events on a topic (with some transformation and filtering in between). To do that, I thought about using a route like this : http://camel.apache.org/schema/spring";> http://localhost:9080/Events?restletMethod=post"/> But as rest

Re: dot generation with maven plugin -> classNotFoundException

2011-04-04 Thread Michael Dewitte
Thanks for the answer, but it didn't solve the problem... :-( 2011/4/4 David Karlsen > You can probably work around it by adding: > http://repo1.maven.org/maven2/org/slf4j/slf4j-simple/ > to the plugins dependency list. > > 2011/4/4 Michael Dewitte > > > Hi, >

dot generation with maven plugin -> classNotFoundException

2011-04-04 Thread Michael Dewitte
Hi, I was trying to get some visualisation of my developped route, and so I tried the mvn camel:dot target on my route. But then I got the following stacktrace. Any clue ? I use Camel 2.7.0 and my route is configured via Spring XML... [INFO] Running Camel embedded to load Spring XML files from cl

Re: multiple databases used in mybatis or ibatis in one route

2011-04-04 Thread Michael Dewitte
; ${body} Hope it'll be helpfull to someone ! Mike 2011/4/1 Michael Dewitte > Thnaks to you, Claus and Richa

Re: multiple databases used in mybatis or ibatis in one route

2011-03-31 Thread Michael Dewitte
Thnaks to you, Claus and Richard for this fast and extensive help ! I'll give it a try today ! Thx, Mike 2011/3/31 Richard Kettelerij > To use this component in your route use: > > from("mybatis2:selectFoo").to("..."); > > > -- > View this message in context: > http://camel.465427.n5.n

Re: polling database

2011-03-31 Thread Michael Dewitte
Hi, why don't timer component fit your requirements ? from("timer://pollTheDatabase?delay=3").to("mbatis:selectAllAccounts").to("activemq:queue:allAccounts"); would execute the query configured un mybatis every 30 seconds... and put the result on the queue allAccounts... You can either proc

multiple databases used in mybatis or ibatis in one route

2011-03-31 Thread Michael Dewitte
Hi, I finally succeeded using MyBatis in a route with camel 2.7.0 deployed on Karaf (servicemix in fact). But what I'd like now is to be able to use 2 different databases in the same route. I know that I can define different databases in MyBatis, but is it possible to configure two instances of th

Re: Service architecture

2011-03-29 Thread Michael Dewitte
se multiple instances on different > machines. > Doing Failover on the same machine I would rather not recommend. > > Regards, Achim > > 2011/3/29 Michael Dewitte : > > Hi, > > > > nice thread, thanks for the sharing... to me, multiple instances makes >

Re: Service architecture

2011-03-29 Thread Michael Dewitte
Hi, nice thread, thanks for the sharing... to me, multiple instances makes sense for fail-over. Just configure it through the ActiveMQ... Mike 2011/3/29 Achim Nierbeck > Hi Gonzalo, > > Makes sense, besides one point, why do you expect you need multiple > Karaf instances? > Regarding Camel or

Re: Problem using iBatis in a route deployed on Karaf

2011-03-24 Thread Michael Dewitte
nt.java:94)[224:org.apache.servicemix.bundles.ibatis-sqlmap:2.3.4.726_3] ... 44 more 2011/3/24 Michael Dewitte > yes, it's what I assume too... and indeed, the box is offline (I cannot > connect the server to the internet)... but why is it trying to find it > online ? Do I have to setup something so tha

Re: Problem using iBatis in a route deployed on Karaf

2011-03-24 Thread Michael Dewitte
t; It looks like SqlMapConfigParser try to load the schema of SqlMapConfig.xml > from the internet. > > > > On 3/24/11 4:40 PM, Michael Dewitte wrote: > >> Why is it connecting via http ? And to what ? Is it trying to find the >> SqlMapConfig.x

Re: Problem using iBatis in a route deployed on Karaf

2011-03-24 Thread Michael Dewitte
create the application context. > > Willem > > > On 3/23/11 10:24 PM, Michael Dewitte wrote: > >> Hello, >> >> I've got some hard time trying to use a route using ibatis component and >> deployed on karaf (in fact, servicemix). >> >>

Problem using iBatis in a route deployed on Karaf

2011-03-23 Thread Michael Dewitte
Hello, I've got some hard time trying to use a route using ibatis component and deployed on karaf (in fact, servicemix). I made a bundle, using blueprint, in which I placed my blueprint and the config files for ibatis. Deploy is just fine, but soon as the route is activated (dropping a file int