Re: soTimeout ignored by camel http component

2016-02-03 Thread yuktisinghal
In my current application camel is used as an intermediate queue for handling the request.when my server is start up , we set up the routes.In the routes we define define timeout .My routebuilder class is from(consumerUri).to(TO_INFO).process(new CamelReceiveProcessor)); Here TO_INFO =

Re: JPAProducer intances are never released!

2016-02-03 Thread ursouca
Dears, One interresting thing. When I disable the JMX agent the jpaProducer instances are released and garbage collected. It seems to me that is the JMX agent is keeping reference on the JpaProducer objects making them never released. Now I am wondering if it is a misconfiguration or it is a

Re: soTimeout ignored by camel http component

2016-02-03 Thread Andreas Siepert
You could pass the whole uri as header parameter. If i rember right this works since 2.16 for to() - if using an older version you could use the EIP recipientList Hope that helps Andi 2016-02-03 11:02 GMT+01:00 yuktisinghal : > In my current application camel is used as

camel-jsonpath gives error when you add the dependency to the pom file

2016-02-03 Thread souciance
Hello, I have added the following dependency to my pom.xml. org.apache.camel camel-jsonpath 2.16.1 Without add any jsonpath code, and just running it afterwards I get the below error. If I remove that dependency and run it everything works. Is there something wrong

Component camel-jsonpath gives error after adding to pom file

2016-02-03 Thread souciance
Hello, In a clean Camel project I add the following dependency: org.apache.camel camel-jsonpath 2.16.1 When I run the project I get the below error. If I remove that dependency it

XmlRpc marshalling issue

2016-02-03 Thread Bernard Ligny
I am trying to issue a (very) basic request using: @Override public void configure() { XmlRpcDataFormat xmlrpcRequest = new XmlRpcDataFormat(); xmlrpcRequest.setRequest(true); ..

Re: Transaction problem with Camel, ActiveMQ and Spring JMS

2016-02-03 Thread Stephan Burkard
Yes, same broker. There is only one ActiveMQ connection config in the project. On Wed, Feb 3, 2016 at 8:00 PM, Quinn Stevenson wrote: > Are both the source and destination queues hosted by the same ActiveMQ > broker? > > > > > On Feb 3, 2016, at 8:21 AM, Stephan

Re: Camle-Swagger-Java- documenting optional param for REST Service

2016-02-03 Thread Matt Sicker
Use required="false" in your param element. On 2 February 2016 at 17:59, urwithsumit wrote: > Hi, > > Currently while documenting the REST Service we are giving param name as > below: > > > > This marks the param as mandatory and when we are testing it with >

Re: camel-jsonpath gives error when you add the dependency to the pom file

2016-02-03 Thread souciance
Note that it seems I had to add: org.ow2.asm asm-commons 5.0.3 runtime in order for this to work. But I am guessing this cannot be the correct way or? -- View this message in context:

camel-jsonpath gives error when you add the dependency to the pom file

2016-02-03 Thread souciance
Hello, In a clean Camel project I add the following dependency: org.apache.camel camel-jsonpath 2.16.1 When I run the project I get the below error. If I remove that dependency it works. I have

Re: Camle-Swagger-Java- documenting optional param for REST Service

2016-02-03 Thread urwithsumit
Thanks Matt. It fixed the issue. -- View this message in context: http://camel.465427.n5.nabble.com/Camle-Swagger-Java-documenting-optional-param-for-REST-Service-tp5777172p5777194.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Transaction problem with Camel, ActiveMQ and Spring JMS

2016-02-03 Thread Quinn Stevenson
Are both the source and destination queues hosted by the same ActiveMQ broker? > On Feb 3, 2016, at 8:21 AM, Stephan Burkard wrote: > > Hi > > I have built a small Maven project (attached) to demonstrate a JMS > transaction problem in Camel routes under certain load