Re: Camel Roadmap

2012-11-02 Thread Claus Ibsen
Hi We write the release notes during development of the next, so you can see it at http://camel.apache.org/in-progress.html http://camel.apache.org/camel-2110-release.html And as Christian pointed out JIRA can show a roadmap as well. And we have some design sketches for longer terms for Camel

Re: JMS Component - Activation Spec

2012-11-02 Thread Claus Ibsen
On Fri, Nov 2, 2012 at 5:56 AM, Patrick Bray patrick.b...@gmail.com wrote: Thanks for your quick response Claus. I have read your book and it has been a great help in getting up and running using Camel. One quick question. I understand that camel-jms uses spring-jms under the hood and as such

Re: Implementing Producer for async subsystem

2012-11-02 Thread Claus Ibsen
Hi You can use the AsyncProcessor for this. http://camel.apache.org/asynchronous-processing.html Then when the other system comes back with a reply, you can prepare this in the async callback, and then signal to come to continue. Camel in Action book chapter 10 have also more details and

Re: Camel context autostartup

2012-11-02 Thread Claus Ibsen
On Tue, Oct 30, 2012 at 5:44 PM, Benjamin Graf benjamin.g...@gmx.net wrote: That is exactly the way I have already tried. But the spring-dm extender thread was a different one than the one the camel context was later starting from. NO_START is a ThreadLocal variable. :-( I hope there is way

File comsumer options not working

2012-11-02 Thread Elezabeth
Hi, I am using camel to read a csv file using the ConsumerTemplate as shown below: / Exchange recievedEx = consumer.receive(file: + fileLocation + ?fileName= + fileName);/ Ideally, the default behaviour of the File consumer is that after reading the file the file will be

Re: File comsumer options not working

2012-11-02 Thread Claus Ibsen
Hi Yes read the javadoc of the API you are using. It explains why. http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/ConsumerTemplate.html On Fri, Nov 2, 2012 at 1:06 PM, Elezabeth elezabeth.greg...@ibsplc.com wrote: Hi, I am using camel to read a csv file using the

Re: File comsumer options not working

2012-11-02 Thread Elezabeth
Hi Claus, Any suggestions? - Thanks Regards Elz -- View this message in context: http://camel.465427.n5.nabble.com/File-comsumer-options-not-working-tp5722020p5722025.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel-CXF strips all the xml elemets and attributes and send only data with whitespace

2012-11-02 Thread Willem jiang
Can I have a look at the route ? Here is a test[1] of camel-cxf that you can take a look. [1]https://svn.apache.org/repos/asf/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfConsumerPayloadTest.java -- Willem Jiang Red Hat, Inc. FuseSource is now part of Red

Dependency to jaxb-impl

2012-11-02 Thread PJ Walstroem
hello, I see that camel-core, camel-jms and camel-spring transitively depends on jaxb-impl. What would be the reason for that? This causes some problems when using jax-ws. java.lang.ClassCastException: com.sun.xml.bind.v2.runtime.JAXBContextImpl cannot be cast to

Re: Dependency to jaxb-impl

2012-11-02 Thread Daniel Kulp
On Nov 2, 2012, at 9:23 AM, PJ Walstroem walst...@hotmail.com wrote: hello, I see that camel-core, camel-jms and camel-spring transitively depends on jaxb-impl. What would be the reason for that? There are a bunch of things we do that require a fully working and stable version of JAXB which

Split, transform and aggregate RSS XML feed

2012-11-02 Thread Martin Stiborský
Hello, currently I'm working on a case, where is RSS XML feed as data source, which I need to grab and parse/transform in to POJO classes structure and the return back as JSON. Concerning the relevant route in Camel, I have restlet as the consumer endpoint (there are few things needed to declare

RE: Split, transform and aggregate RSS XML feed

2012-11-02 Thread Ramkumar.Iyer
Have you written a Content Enricher? -Original Message- From: Martin Stiborský [mailto:martin.stibor...@gmail.com] Sent: Friday, November 02, 2012 8:19 PM To: users@camel.apache.org Subject: Split, transform and aggregate RSS XML feed Hello, currently I'm working on a case, where is RSS

Re: Dependency to jaxb-impl

2012-11-02 Thread PJ Walstroem
great answer, thank you Dan. /pj -- View this message in context: http://camel.465427.n5.nabble.com/Dependency-to-jaxb-impl-tp5722030p5722036.html Sent from the Camel - Users mailing list archive at Nabble.com.

RE: Split, transform and aggregate RSS XML feed

2012-11-02 Thread Ramkumar.Iyer
I am not sure if I understand you rightly but have you looked at content enricher EIP. Basically you have RSS feeds that are enriched through a split-aggregate. Example merge RSS feeds for USA across multiple articles creating one RSS feed for USA etc.

Re: CAMEL -JMS Request TimeOut

2012-11-02 Thread ravi.4indra
Thanks Willem!! I am seeing this two threads even after getting response from reply queue. PersistentQueueReplyManager JmsReplyManagerTimeoutChecker I am under the impression that once i get the response from jms inout these threads will be terminated.but i see that these threads are running

Re: CAMEL -JMS Request TimeOut

2012-11-02 Thread Christian Müller
As Willem mentioned, it's a thread pool. Sent from a mobile device Am 02.11.2012 20:24 schrieb ravi.4indra ravi.4in...@gmail.com: Thanks Willem!! I am seeing this two threads even after getting response from reply queue. PersistentQueueReplyManager JmsReplyManagerTimeoutChecker I am under

Re: Issue with Camel annotations not being processed [OSGi, Blueprint, Javaconfig]

2012-11-02 Thread Christopher Love
Claus and other I am just coming up to speed on blueprint / osgi, and I think I may be running into the same form of issue. @Value with property place holder does not seem to be populating when the route is deployed inside of Karaf. In unit test it populates the string correctly running inside

Re: Trouble with split/tokenize on linux

2012-11-02 Thread Christian Müller
The following should work for you: from(file://src/test/data?fileName=crm.sample.csvnoop=truecharset=ISO-8859-1) .split(body().tokenize(\n)) it's important to use the charset ISO-8859-1. I will open a JIRA to improve the current behavior in Camel. If you use the wrong charset (e.g. UTF-8 in

Re: An urgent aws SQS consumer question

2012-11-02 Thread Raul Kripalani
Have you tried using an onException block that captures java.lang.Exception, setting handled to true? That should clear the exception, and to the SQS consumer it will seem as if nothing special had happened. Sent from a mobile device On 2 Nov 2012 22:48, Bilgin Ibryam bibr...@gmail.com wrote: