Re: Hibernate with restlet

2015-04-27 Thread Claus Ibsen
Hi Yeah sure we love contributions http://camel.apache.org/contributing.html On Mon, Apr 27, 2015 at 12:35 AM, ablevine1 ablevi...@gmail.com wrote: Thank you Claus. The SQL component works great for my use case, although I can see where there would a few minor drawbacks to using it versus

Local JMS transaction failed to commit

2015-04-27 Thread blommish
Trying to setup a Camel application to use liberty profile jmsConnectionFactory, being able to do commits to the producer queue. So then we don't want a local jms transaction, but there still is one, how should this be handled? -- View this message in context:

Re: Is there threads for Spring XML?

2015-04-27 Thread Camel Guy
Nevermind. I found threads via 10.3.1 Camel in Action. On Mon, Apr 27, 2015 at 11:50 AM, Camel Guy ca...@devguy.com wrote: How do I get functionality like .threads(5,10) in Spring XML? Thank you, ~ cg

Re: HTTP operation failed invoking statusCode: 500

2015-04-27 Thread ercan.canlier
Hi, I try to proxy via payload but unfortunately, real web service can not be reachable. When i telnet to real web service port, i get connection refused exception that means it is not running at the specified port. What might be the reason? I don't see any mistake here. By following the below

Re: Dynamic JMS selector question (camel-jms)

2015-04-27 Thread Gareth Western
We recently did something similar for a JMS selector. In our case we need to select a particular JMS message from a dead letter queue (based on the message ID). In short, we add the route dynamically, give it 10 seconds to process, then remove the route from the context. We then also need to

Re: Propose change eagerMaxMessagesPerPoll in file/ftp consumers

2015-04-27 Thread alexey-s
I tried to implement a mechanism to limit the list of files. If the system is switched to the third depth of the file system, it is necessary to process all the files and subdirectories. For this purpose, it is necessary to register the new component. An example implementation is shown below

Performance Issues with Camel

2015-04-27 Thread romainp
Hi, I wrote a simple test of performance using camel on ServiceMix 5.4 Here are the details : - Both of my tests are using an uncompressed request/response - The client is a load test under jmeter with a call frequency of 20 req / s - The provider is a Mock SOAPUi with one reply of 20k - During

Re: Complex Correlation Expression

2015-04-27 Thread dphan
Thank you. -- View this message in context: http://camel.465427.n5.nabble.com/Complex-Correlation-Expression-tp5766310p5766383.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Comparison of Apache Camel and IBM Integration Bus v9.0

2015-04-27 Thread jamie3
Haha touche. I will make sure it is fixed. Thanks. -- View this message in context: http://camel.465427.n5.nabble.com/Comparison-of-Apache-Camel-and-IBM-Integration-Bus-v9-0-tp5766171p5766385.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: How to guarantee OnCompletion() is called before a file is routed further down the route

2015-04-27 Thread Claus Ibsen
on completion is only for when the exchange is done being routed totally. Not in between eips in routes. You can add your task as a bean / processor step between the 2 eips. Or look at interceptors and then only do your work after the middle etc, but that takes a little bit of code to filter when

Re: Dynamic JMS selector question (camel-jms)

2015-04-27 Thread jcostello
Gdubya, I spent some time hacking on this over the weekend and figured out that it was happening because of the spring caching connection factory. If you set cacheConsumers=false, the consumers are removed when the polling is complete. Thanks! From: gdubya [via Camel]

How to guarantee OnCompletion() is called before a file is routed further down the route

2015-04-27 Thread Tom1738
Hi I am considering a new camel route implemented in java, something like, from(file://input).to(file:/middle).to(file:output). I want to introduce a Synchronization.onComplete() operation after to(file://middle) doing some housekeeping, such as checking the file has been routed from

Re: Done file not deleted

2015-04-27 Thread dornseif
I see the original fix was not re-opened? Please at the very least can you add a boolean to deleteLastDoneFileOnly or deleteAllDoneFiles? In our case we need to delete all the done files after processing. We have a situation where many thousands of accounts exist on an SFTP site. Each account

RecipientList Component Resolution

2015-04-27 Thread Christopher Geer
I’ve run into a strange situation while using the RecipientList EIP. We are running Camel inside Karaf and defining CamelContexts in blueprint files. We have two Karaf containers. The first one runs Bundle A and the second one runs ActiveMQ (simplified for example purposes). In the blueprint

TypeConversion Error

2015-04-27 Thread Scarpacci
Hi All, I am using akka-camel to process files. My initial tests were working great, however when I started passing in actual xml files it is puking with type conversions. Here is my consumer (very simple, but puking at msg.bodyAs[String] class FileConsumer extends Consumer { def endpointUri

Re: Cannot instantiate class: weblogic.jndi.WLInitialContextFactory

2015-04-27 Thread Claus Ibsen
Hi You need to install WebLogic JMS client into ServiceMix. There is this blog talking how to do that http://lowry-techie.blogspot.se/2011/06/camel-integration-with-oracle-weblogic.html On Mon, Apr 27, 2015 at 9:41 PM, marcoisaac marco.laurrabaq...@conceptomovil.com wrote: Hi im having a

Re: How to guarantee OnCompletion() is called before a file is routed further down the route

2015-04-27 Thread Tom1738
Hi, what's meant by the exchange is done being routed? I reckon that's when the exchange has been delivered from input to middle (using example in my original post). Is that correct? If so, then my OnCompletion() can been called before the file is moved to output or after. But there is no

Is there threads for Spring XML?

2015-04-27 Thread Camel Guy
How do I get functionality like .threads(5,10) in Spring XML? Thank you, ~ cg