Re: Routing to a method of an object with more than one parameters - part2

2010-01-03 Thread yaog
Thanks. I have read those links, but... It may be me, but I cannot understand how it all hooks up. What I want to define is a bean that is invoked with a method that gets 3 parameters. Scenario is one of the following 2: 1. Bean a class bean B ant wants to pass 3 parameters and not just one. T

Re: Way for a message to spawn new processors

2010-01-03 Thread Willem Jiang
Hi, You can use the ProducerTemplate to send a new message to whatever endpoint that you want to send to in the processor. Here is an example[1] in apache wiki. [1] http://camel.apache.org/how-do-i-write-a-custom-processor-which-sends-multiple-messages.html Willem Pete Mueller wrote: Hey

Way for a message to spawn new processors

2010-01-03 Thread Pete Mueller
Hey all, I have an incoming message in an exchange that needs to be processed. The processing of this message may create more messages. This is not a spliting action, in one case for example, data is analyzed and if the result of a computation is > X, a new alert message needs to be sent down a

Re: Camel IRC Message Router Example

2010-01-03 Thread Claus Ibsen
On Sun, Jan 3, 2010 at 8:47 AM, James Carr wrote: > The actual problem I needed camel to solve at work was rather dull and > a straightforward forwarding of messages, so I dreamed up a fun little > app to learn some of camel's features better. > > The result is an IRC bot that can parse javascript

Re: Routing to a method of an object with more than one parameters - part2

2010-01-03 Thread Claus Ibsen
On Sun, Jan 3, 2010 at 4:15 PM, yaog wrote: > > Hi, > > I fond a solution under: > > http://old.nabble.com/Routing-to-a-method-of-an-object-with-more-than-one-parameters-td15806637.html > > But I do not understand it. > > Does it mandate using a proxy? Can someone post a working spring example? >

Routing to a method of an object with more than one parameters - part2

2010-01-03 Thread yaog
Hi, I fond a solution under: http://old.nabble.com/Routing-to-a-method-of-an-object-with-more-than-one-parameters-td15806637.html But I do not understand it. Does it mandate using a proxy? Can someone post a working spring example? Thanks. -- View this message in context: http://old.nabble.

Re: Apache Camel Usage with .Net

2010-01-03 Thread Martin Gilday
I recently had a project that required integration with MSMQ. In the end we found it easier to use C# to write a bridge that relayed all the messages from MSMQ on to ActiveMQ which we then used Camel with. You can publish to ActiveMQ from C# really easily with Apache NMS and Spring.NET. - O