Looking for a Good CAMEL - WEBSHPERE MQ Integration Example

2016-01-31 Thread ajeets1978
I am looking forward for IBM MQ / WEBSPHERE MQ & CAMEL Integration examples, tried lot of available examples, none of them seems to be working even after lot of efforts. Things seems to be running bit fine with ActiveMQ, but no such good example available anywhere, which implements the reading and

Re: Shared Camel Context.

2016-01-31 Thread jgoggins
Cheers Matt -- View this message in context: http://camel.465427.n5.nabble.com/Shared-Camel-Context-tp5777066p5777084.html Sent from the Camel - Users mailing list archive at Nabble.com.

Does Camel SQL Component have setQueryTimeout?

2016-01-31 Thread NES
Hello, I'm looking for the way to set query timeout by Camel. I read the documents of SQL Component, but I have not found it yet. Could you tell me the way, please? -- View this message in context: http://camel.465427.n5.nabble.com/Does-Camel-SQL-Component-have-setQueryTimeout-tp5777088.html Se

Re: Class substitution in bean?

2016-01-31 Thread Brad Johnson
The separate properties files is what I have now. I thought about interceptors but have limited experience with them so will have look into that further. The reason I'm looking for a way to do this is because of what I've found to be the work method at most of my clients. As soon as APIs get def

Re: Shared Camel Context.

2016-01-31 Thread Matt Sicker
Using direct-vm is for when you have multiple CamelContexts running. I use it in OSGi, seems like it works just the same anywhere there is more than one CamelContext or possibly even ClassLoader. On 30 January 2016 at 18:22, jgoggins wrote: > Can Camel Context be shared between an Akka Actor app

Re: Class substitution in bean?

2016-01-31 Thread Quinn Stevenson
One option would be to put the definition of your bean in one XML file and the route in another. You can have the production version of the supporting beans in src/main/resources/OSGI-INF/blueprint, and the test versions in src/test/resources/OSGI-INF/blueprint. That’s not a great solution bec