Re: bean - camel-bindy - csv problem

2009-12-23 Thread Charles Moulliard
Hi Kevin, I will have a look on that this afternoon and coming back to you with info. I have done the code and test it with Key value pair format but not yet for CSV. This could be possible. I think that @Section tag is not checked in bindyCSVFormat. Concerning version number, this should be

Re: bean - camel-bindy - csv problem

2009-12-23 Thread Kevin Jackson
Hi, I will have a look on that this afternoon and coming back to you with info. I have done the code and test it with Key value pair format but not yet for CSV. This could be possible. I think that @Section tag is not checked in bindyCSVFormat. Concerning version number, this should be camel

camel-xmpp througth proxy

2009-12-23 Thread Aleksey Masny
Hello all! My route: from(stream:in?promptMessage=You message: ).to(xmpp://pi...@qip.ru/aleksey.ma...@gmail.com?password=xx); My problem: At home, without proxy server, this route send message to aleksey.ma...@gmail.com sucessfull. But at office computer, with proxy server, xmpp component

Re: bean - camel-bindy - csv problem

2009-12-23 Thread Claus Ibsen
On Wed, Dec 23, 2009 at 9:54 AM, Kevin Jackson foamd...@gmail.com wrote: Hi, I will have a look on that this afternoon and coming back to you with info. I have done the code and test it with Key value pair format but not yet for CSV. This could be possible. I think that @Section tag is not

Re: bean - camel-bindy - csv problem

2009-12-23 Thread Kevin Jackson
Hi, I will have a look on that this afternoon and coming back to you with info. I have done the code and test it with Key value pair format but not yet for CSV. This could be possible. I think that @Section tag is not checked in bindyCSVFormat. Concerning version number, this should be camel

Re: bean - camel-bindy - csv problem

2009-12-23 Thread Charles Moulliard
Hi Kevin, Modifying camel-bindy to allow @Section will take more time than a few minutes because the existing code is based on a recursive method (required to generate in output a CSV with several repeat group) and is a but complicated to modified. Regards, Charles Moulliard Senior Enterprise

Re: camel-xmpp througth proxy

2009-12-23 Thread Ashwin Karpe
Hi Alexey, XMPP is used for connecting to IRC based endpoints. Are you sure that this is allowed at your company. Most companies block these ports to prevent this exact kind of communication from taking place. Also, is port 8989 available for you. I hope no other process has locked up this port

Re: Web Console configuration

2009-12-23 Thread Ryadh Amar
The webconsole is not picking your routes because you're not telling it to :D If you only change the packaging of your pom to war and add the camel-web dependency, the application context will load a provided sample applicationContext.xml, but if you already provide a web application folder

The latest camel java archetype (2.1.0) is not working correctly

2009-12-23 Thread Ryadh Amar
Hello Community, When I run the following mvn archetype:generate -DarchetypeGroupId=org.apache.camel.archetypes -DarchetypeArtifactId=camel-archetype-java -DarchetypeVersion=2.1.0 -DgroupId=com.corp.projects -DartifactId=camel-jira-ws Everything looks ok, but glancing at the generated pom.xml in

Re: The latest camel java archetype (2.1.0) is not working correctly

2009-12-23 Thread Hadrian Zbarcea
Hi Ryadh, Thanks for pointing that out. Yes, a jira should be created, please mark it as a bug. If you know what the cause is and could submit a patch, even better. Thanks, Hadrian On Dec 23, 2009, at 1:29 PM, Ryadh Amar wrote: Hello Community, When I run the following mvn

Re: The latest camel java archetype (2.1.0) is not working correctly

2009-12-23 Thread Jon Anstey
Darn! Looks like a change I made to support Maven 3 broke Maven 2. I've put a fix on trunk so the artifact/group substitution will work for next time. On Wed, Dec 23, 2009 at 2:59 PM, Ryadh Amar magnetic.gan...@gmail.comwrote: Hello Community, When I run the following mvn archetype:generate

Camel-Cache: Processors not released?

2009-12-23 Thread tide08
It looks like camel-cache processor are not released? I did unjar camel-cache 2.1.0 jar, it does not have processor (ex: CacheBasedTokenReplacer) classes, and on exploding source jar it does seem to have processor sources. Are those missing or am I mis-understanding something? or do I need some

Dose The Camel client connect to, send, and receive messages from a remote Camel Server?

2009-12-23 Thread honno
We know the camel clients( ProducerTemplate and ConsumerTemplate) can send and receive messages from loacal Camel server(DefaultCamelContext). But how can i send and receive messages from remote Camel server with camel client or camel api ? -- View this message in context:

Re: Dose The Camel client connect to, send, and receive messages from a remote Camel Server?

2009-12-23 Thread Willem Jiang
Hi, If you are using the component that can send/receive the message across the JVM, such as camel-jms, camel-http, camel-cxf, camel-mina. All you need to do is setting the right endpoint uri on the Template API. Willem honno wrote: We know the camel clients( ProducerTemplate and

Re: Dose The Camel client connect to, send, and receive messages from a remote Camel Server?

2009-12-23 Thread honno
Yes.We can send and receive messages to the remote camel server with some components(camel-jms,camel-cxf...),but i want to kown that which camel client api i can use to access remote camel server. willem.jiang wrote: Hi, If you are using the component that can send/receive the message