Re: Iterating beans in the route

2012-02-17 Thread surya aditya
Quick answer would be to look into Dynamic Router Integration Pattern offered by Camel. You can follow the link below and see if it rings a bell. http://camel.apache.org/dynamic-router.html peace, On Fri, Feb 17, 2012 at 10:01 PM, Frank wrote: > Hi, > > I have a route consists of four differen

Iterating beans in the route

2012-02-17 Thread Frank
Hi, I have a route consists of four different beans. I want to iterate the third and fourth bean for 'x' number of times. How can I do this in a loop? Anyone please help me. Thanks, Frank -- View this message in context: http://camel.465427.n5.nabble.com/Iterating-beans-in-the-route-tp549461

Camel-cxf question

2012-02-17 Thread wanggang1
Hi, I was trying to follow the example in the article "Calling WebServices with Apache Camel" on http://camel.apache.org/articles.html. It works fine when I routed soap request from file system to http://www.webservicex.net/stockquote.asmx, and I got responses back, from("file:src/data?noop=tru

Re: CXF Question

2012-02-17 Thread Castyn
Just to help understanding, here is basically what I am doing, catching an incoming request on a jetty port, log the message, route to cxf component, log the response. How do I leverage the cxf endpoint to validate? Like I said currently it is in MESSAGE dataformat so that is not happening, but w

RE: camel-nmr pub-sub

2012-02-17 Thread Zhemzhitsky Sergey
>> There is an option in AMQ connection URIs to defer object serialization Thanks a lot for the tip. I suppose it's the "marshal" option. Will check it a little bit later. >> allows for multiple containers to be clustered together via JBI clustering. Does it mean that I can pass messages by mea

Startup Behavior Like ActiveMQ

2012-02-17 Thread Calvert, Zach (Zach)** CTR **
I have a core bundle (bundle A) which sets up active MQ like: configuration Now in another bundle, I create a reference to the rouerqueue config: And then I can directly use it in my routes: ... My qu

RE: Wiring a New Component Using Spring

2012-02-17 Thread Calvert, Zach (Zach)** CTR **
Thank you Willem for the advice. I'll be looking into the use of this method today. Zach Calvert -Original Message- From: Willem Jiang [mailto:willem.ji...@gmail.com] Sent: Tuesday, February 14, 2012 7:16 PM To: users@camel.apache.org Subject: Re: Wiring a New Component Using Spring

Re: Smpp unit test..

2012-02-17 Thread Babak Vahdat
Hi I assume [1] is what you're looking for. [1] https://svn.apache.org/repos/asf/camel/trunk/components/camel-smpp/src/test/java Babak -- View this message in context: http://camel.465427.n5.nabble.com/Smpp-unit-test-tp5492284p5492371.html Sent from the Camel - Users mailing list archive at Na

Re: Using Camel to as WS Broker

2012-02-17 Thread Mauricio Chamati
Sounds exactly what I need, I will test it and send a feedback. Thanks! On Thu, Feb 16, 2012 at 11:58 PM, ychawla wrote: > Hi Guys, > It looks like you want to use a single service as a facade to the multiple > services behind the scenes. Camel can do that. Does the service that you > want to

Smpp unit test..

2012-02-17 Thread Omar Atia
Dears, We are trying to manage to send SMS to SMSC using , is their any test case !?or unit test source code that tests the functionalities of smpp . Even if you can provide svn link for the unit test. Appreciated. Thanks, Omar atia Sent via BlackBerry®

Re: intercept message delivery

2012-02-17 Thread Raul Kripalani
If you want the decryption to kick in before your route logic, consider using interceptFrom. Regards, Raul. On 15 Feb 2012, at 16:58, balsmn wrote: > hi all, > > I have a destination by name "testQueue", to which messages sent, all have a > custom header in encrypted form. Before, consumers of

Re: camel-nmr pub-sub

2012-02-17 Thread Raul Kripalani
NMR gives you synchronous invocations too (InOut), and allows for multiple containers to be clustered together via JBI clustering. There is an option in AMQ connection URIs to defer object serialisation, especially intended for the VM transport where the objects don't need to be serialised. You mi