Re: CamelProxy and on Camel 2.16

2016-03-02 Thread Cristiano Costantini
Hi Claus! Yes I've found it! It is: probably I didn't initially found it because eclipse was still pointing to the XSD of version 2.13.2 (I've found the attribute after "maven > update project" in eclipse) Thank you, Cristiano Il giorno mer 2 mar 2016 alle ore 12:42 Claus Ibsen

Netty Producer component issue for handling concurrent requests on same connection in request/reply mode:Production issue

2016-03-02 Thread ashoksrinivas87
Hi, We have camel-netty component(2.11.2). We see only one channel id getting created per socket connection and hence requests are not being processed in parallel on the same connection. It is acting in a synchronous mode. We have bi-directional socket(request and response messages flow on same

Camel Netty producerPoolMinEvicatable is not working as expected:Defect:Production Issue

2016-03-02 Thread ashoksrinivas87
Hi, We are using bidirectional socket communication with back end. We send a request on 1 socket(1 channel) and wait for the response on the same channel since we have set sync as true. What we observe is in tcpdump collected is, once we receive an acknowledgement for the request received from

Using apache camel failover loadbalancer

2016-03-02 Thread mnl
I am new to camel and trying to use failover loadbalancer. I have list of endpoints (say, A, B, C) which can be used to send message such that if one fails the endpoint next in the list can be tried. lets say B was success. After successful send, B will receive an exchange which can be used to

Polling http endpoints

2016-03-02 Thread jelmer
Hi as part of a camel route i upload a file to a REST service, the service will return status 202 and a Content-Location header that points to a json resource with a status field i want to wait for the status of this resource to change to completed, and only then continue. so i need some sort of

Re: How to configure jms consumer with dynamic selector

2016-03-02 Thread Michele
Hi, Thanks for your reply. Aggregator with completion timeout is a good idea. I try it. Can I use infinispan like a persistent repository? Thanks in advance Greetings Michele -- View this message in context:

Re: How to configure jms consumer with dynamic selector

2016-03-02 Thread Claus Ibsen
Hi You could also look into using a route policy, that keeps check on the date, and when there is a date cross over, it stops the consumer, change the jms selector, and starts it again. Though haven't tried myself, but is maybe possible. The route policy you would need some background thread etc

Unable to route Rest webservice Json response to SOAP service via camel route

2016-03-02 Thread amitmahesh
We are calling a thirdparty SOAP service (without WSDL) from a REST service. We created a intermediate proxy cxf webservice to invoke the final third party webservice. The JSON request is not getting converted to SOAP parameters correctly and we getting Exception that "Expecting 3 parameters but

RE: Ampersand in ftp password

2016-03-02 Thread jamesburn
Thanks for all your responses. I knew there'd be a Camel way :) I'll give this a go. James From: Claus Ibsen-2 [via Camel] [mailto:ml-node+s465427n5778480...@n5.nabble.com] Sent: 01 March 2016 15:07 To: BURN, James Subject: Re: Ampersand in ftp password Hi See this link

Re: How to configure jms consumer with dynamic selector

2016-03-02 Thread Quinn Stevenson
Maybe you could use an aggregator and set the completionTimeout to what you’re after? You’d need to use a persistent store of some sort, but that may be a simple way to get what you’re after. > On Mar 1, 2016, at 12:27 PM, Michele > wrote: > > Hi Claus, >

Re: [Camel-Kafka] consumerStreams vs ConsumersCount

2016-03-02 Thread kgdinesh
Hi, I have a single topic with 8 partitions and my consumer app has to process all the events as fast as possible. Which among the following is the best configuration for this scenario? 1. ConsumerCount: 1 and ConsumerStreams: 8 2. ConsumerCount: 8 and ConsumerStreams: 1 Regards, Dinesh Babu

Re: Camel SAP component

2016-03-02 Thread Christian Schneider
You could also take a look at hibersap (http://hibersap.org/example/ and https://github.com/hibersap/hibersap). It allows to create java code and mappings to access SAP in a very convenient way. It is not a camel component but I have used it together with camel in a customer project.

Re: Camel vs. MediationZone

2016-03-02 Thread souciance
Hi Samuel, In order to give a good answer, it is best to know what are your specific requirements. Without that it is hard to say. Best Souciance On Wed, Mar 2, 2016 at 12:43 PM, Lui, Samuel WeiYin [via Camel] wrote: > Hello Camel Community, > > So my

Re: Camel SAP component

2016-03-02 Thread Claus Ibsen
Hi camel-sap is part of the commercial Red Hat JBoss Fuse product. If you are a subscriber of jboss fuse, then you can use that component. At Apache Camel we cannot provide such sap component due sap libraries are in violation with ASF terms. On Wed, Mar 2, 2016 at 9:55 AM, Michal Vich

Camel vs. MediationZone

2016-03-02 Thread Lui, Samuel WeiYin
Hello Camel Community, So my team was looking into some alternatives for file mediation for one of our backend systems and we came across Apache Camel. Our current implementation utilizes MediationZone, but we're looking for other open source alternatives. I was wondering if you guys had any

Re: CamelProxy and on Camel 2.16

2016-03-02 Thread Claus Ibsen
Yes you should do the same in spring xml, and its just as easier there is a binding attribute you can turn off. The spring xml is documented as a xsd so you can just look in there what is valid to use, and setup your java editor to use that xsd while editing and the editor can assist you and tell

Camel SAP component

2016-03-02 Thread Michal Vich
Hello, We use camel and we need to be able communicate with SAP. It's not clear to me if we can use camel-sap component https://github.com/jboss-fuse/fuse-components for free on production or not. Why it's not part of fuse and on git is written "A collection of Apache Camel (or other project)

CamelProxy and on Camel 2.16

2016-03-02 Thread Cristiano Costantini
Hello All, I'm updating our project to use latest Camel 2.16 from camel 2.13.2 Launching tests, I've discovered the new behavior of the CamelProxy which turns on Parameter Binding by default ( http://camel.apache.org/using-camelproxy.html#UsingCamelProxy-WhatissendontheMessage), and makes my