Re: jms and camel

2016-11-02 Thread Tomohisa Igarashi
mmitting each opened session only after I have received 10 messages. Can I do that with camel? Thanks. -- View this message in context: http://camel.465427.n5.nabble.com/jms-and-camel-tp5789672.html Sent from the Camel - Users mailing list archive at Nabble.com.

jms and camel

2016-11-02 Thread sa_james
Hello, I would like to consume a jms queue by closing the committing each opened session only after I have received 10 messages. Can I do that with camel? Thanks. -- View this message in context: http://camel.465427.n5.nabble.com/jms-and-camel-tp5789672.html Sent from the Camel - Users

RE: Failover JMS and Camel DefaultTimeoutManager failures

2013-09-27 Thread Hendley, Sam
2013 11:07 AM To: users@camel.apache.org Subject: Re: Failover JMS and Camel DefaultTimeoutManager failures Post your route, your configs, and a description of what it does, who are its clients, etc. Also link to the bug in the current code. On Thu, Sep 26, 2013 at 8:02 AM, Hendley, Sam

Re: Failover JMS and Camel DefaultTimeoutManager failures

2013-09-26 Thread Christian Posta
Post your route, your configs, and a description of what it does, who are its clients, etc. Also link to the bug in the current code. On Thu, Sep 26, 2013 at 8:02 AM, Hendley, Sam wrote: > Hello all. > > I am working with a large application written in camel. We have recently > started noticing

Failover JMS and Camel DefaultTimeoutManager failures

2013-09-26 Thread Hendley, Sam
Hello all. I am working with a large application written in camel. We have recently started noticing (it may have been occurring for a while) that in some cases a sort of death spiral occurs. Out setup: Camel 2.10.1 (unfortunately we can't upgrade) ActiveMQ 5.6.0 (unfortunately we can't upgrade

CXF SOAP over JMS and Camel

2009-11-19 Thread Coder One
interface WebService { String greeting(); } class WebServiceImpl { public String greeting() { return("Hello, world"); } } Using CXF simple front-end, the client code just needs a reference the interface WebService and CXF will simply generate the stub/binding to allow the cli