Re: The Camel Components Poster - PDF - FREE

2013-10-04 Thread gliesian
Thanks for the information and guidance. I will make the necessary updates to the poster tonight. If anyone else has information or direction to offer, please advise me. Thanks, Robert -- View this message in context: http://camel.465427.n5.nabble.com/The-Camel-Components-Poster-PDF-FREE-tp5

Re: Creating routes dynamically like a for()

2013-10-04 Thread gudiseashok
See if this helps you ... //Calling to create a router - or loop this AppsRouteBuilder.getInstance().addRouter(camelContext, "{add router id}", true, "{add your "*from*" string here}", new String[] {"***One or ***","more "To" strings here"}); Note#// You ca

Spring-defined routes in akka-camel 2.2.1

2013-10-04 Thread nw31304
I'm trying to use the akka-camel support to consume from a Camel endpoint from an akka 2.2.1 Actor. However, I'd like to define the endpoint as belonging to a routes in a CamelContext defined in a Spring XML file. Something roughly like: and then receive it in an actor, like so:This fails specta

Re: The Camel Components Poster - PDF - FREE

2013-10-04 Thread James Carman
Thanks, Shane! We appreciate your guidance. James On Fri, Oct 4, 2013 at 5:12 PM, Shane Curcuru wrote: > (Please note the mix of mailing lists) > > The most important thing is that Apache product brands are referred to by > their full name - i.e. Apache Camel - in at least both the first and mo

Re: The Camel Components Poster - PDF - FREE

2013-10-04 Thread Christian Müller
Hi Robert! Thanks for your good work. We appreciate it. It looks really cool and I think this poster provides a good overview which components do we have in each particular area. As outlined in [1] and mentioned by James, you should - refer to "The Apache Camel Components Poster" instead of "The

Re: Camel FOP using which fop version

2013-10-04 Thread Christian Müller
Camel 2.12.1 is using fop 1.0: camel-fop cmueller$ mvn dependency:tree [INFO] Scanning for projects... [INFO] [INFO] [INFO] Building Camel :: FOP 2.12.1 [INFO] -

Re: Issue with Transactions and Split

2013-10-04 Thread Baris Acar
The comment in the link below - if true - indicates that the jms component (which the activemq component is based on) is "not designed for batched transactions" and doesn't support consuming multiple messages in a single transaction; I don't know whether that also means it won't post a batch of

Re: Consuming WSDL file

2013-10-04 Thread Christian Müller
I assume you have to provide a web service to your clients and you have to store the requests in a database? If so, I recommend to have a look at the CXF component [1] for providing the web service. For storing data in a database, please have a look at the SQL component [2]. Having a look at [3] sh

Camel FOP using which fop version

2013-10-04 Thread Ericson, Dean - 0551 - MITLL
Does anyone know how if the version of the apache fop engine camel-fop uses is configurable? I noticed that fop v1.0 seems to have issues rendering header/footer content, but that it's been fixed in v1.1. I've looked through the camel-fop site/documentation , bu

Re: Simulating a periodic producer

2013-10-04 Thread prgtrdr
That's a great idea, Chris. I'm going to give it a try. Thanks, Bill -- View this message in context: http://camel.465427.n5.nabble.com/Simulating-a-periodic-producer-tp5740783p5740893.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: How to programmatically find next downstream endpoint in a route.

2013-10-04 Thread James Carman
Does a splitter not work for you in this case? On Fri, Oct 4, 2013 at 1:28 PM, Chris wrote: > Hello, > > I implemented a bean whose method accepts an exchange with a single message, > then generates multiple messages intended for the next endpoint down-stream, > along the lines of this: > > http:

How to programmatically find next downstream endpoint in a route.

2013-10-04 Thread Chris
Hello, I implemented a bean whose method accepts an exchange with a single message, then generates multiple messages intended for the next endpoint down-stream, along the lines of this: http://camel.apache.org/how-do-i-write-a-custom-processor-which-sends-multiple-messages.html However, I'd

Re: Simulating a periodic producer

2013-10-04 Thread Chris
Maybe you could implement a custom RoutePolicy to stop, then restart your route from the top after a certain fixed number of messages are processed. http://camel.apache.org/routepolicy.html On 10/4/2013 6:30 AM, prgtrdr wrote: Thanks for trying to help Robert. Let me clarify my confusing pos

Re: Issue with Transactions and Split

2013-10-04 Thread abdiels
First let me thank you for replying...Here is what I have in my XML let me know if you need any additional information. -- View this message in context: http://camel.465427.n5.nabble.

Re: Issue with Transactions and Split

2013-10-04 Thread gquintana
How did you declare the transaction manager? Something like: -- View this message in context: http://camel.465427.n5.nabble.com/Issue-with-Transactions-and-Split-tp5738618p5740888.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel BAM in Spring XML

2013-10-04 Thread Claus Ibsen
Hi No you need to use the java code. On Fri, Oct 4, 2013 at 2:31 PM, Ondrej_Fialka wrote: > Hello, > I'm trying to use BAM for timeouts in routing. I use Spring XML as the DSL, > but I have only found examles on BAM in Java and was not able to figure out > whether it is supported in Spring XML a

Camel BAM in Spring XML

2013-10-04 Thread Ondrej_Fialka
Hello, I'm trying to use BAM for timeouts in routing. I use Spring XML as the DSL, but I have only found examles on BAM in Java and was not able to figure out whether it is supported in Spring XML as well. Is there a way to define ActivityBuilders in XML or to have them in Java and connect them wit

Re: Camel + myBatis Issue

2013-10-04 Thread Ankur
Thank you all for your help. I'm able to resolve the issues. i have changed my query to achieve this result -- View this message in context: http://camel.465427.n5.nabble.com/Camel-myBatis-Issue-tp5740706p5740872.html Sent from the Camel - Users mailing list archive at Nabble.com.

Consuming WSDL file

2013-10-04 Thread Ankur
Hi All, I'm new to camel & webservices. I have one WSDL file which is published on different server. I want to consume that wsdl file. After retrieving data from WSDL file i need to save data in Database. I have to use spring DSL instead of Java DSL. I'm trying with cxf component but not able to

Re: Memory leak - when an exception is thrown during the scheduling phase

2013-10-04 Thread James Carman
Create a JIRA. Looks like you may have a patch in mind? Do you have test cases? On Friday, October 4, 2013, Nurali Techie wrote: > Hello, > > > > I have observed a memory leak for Quartz worker thread in case an > exception is thrown during the scheduling phase when schedule is set to > past ti

Re: Simulating a periodic producer

2013-10-04 Thread prgtrdr
Thanks for trying to help Robert. Let me clarify my confusing post. I'm writing a GUI app that shows inventory level for a widget. The level changes periodically as customers buy and we receive replenishment. So the GUI updates the quantity on hand as soon as a purchase is made, then when anoth

Re: The facebook component does not read headers values ?

2013-10-04 Thread Emilien
Thanks for your reply, The JIRA is CAMEL-6822 . Hope the patch could help. Best, Emilien -- View this message in context: http://camel.465427.n5.nabble.com/The-facebook-component-does-not-read-headers-values-tp5740818p5740862.html Sent fro

Re: Camel developer's guide still refers to SVN

2013-10-04 Thread Claus Ibsen
Thanks I updated that page. On Fri, Oct 4, 2013 at 10:46 AM, Walzer, Thomas wrote: > http://camel.apache.org/how-do-i-become-a-committer.html has a few references > to SVN > > Thomas. > > -Ursprüngliche Nachricht- > Von: Dale King [mailto:dalewk...@gmail.com] > Gesendet: Donnerstag, 03.

AW: Camel developer's guide still refers to SVN

2013-10-04 Thread Walzer, Thomas
http://camel.apache.org/how-do-i-become-a-committer.html has a few references to SVN Thomas. -Ursprüngliche Nachricht- Von: Dale King [mailto:dalewk...@gmail.com] Gesendet: Donnerstag, 03. Oktober 2013 14:29 An: users@camel.apache.org Betreff: Re: Camel developer's guide still refers to

Memory leak - when an exception is thrown during the scheduling phase

2013-10-04 Thread Nurali Techie
Hello, I have observed a memory leak for Quartz worker thread in case an exception is thrown during the scheduling phase when schedule is set to past time. I have observed this issue with camel-quart 2.10.4, 2.11.0, 2.11.2 versions. For ex, assuming today is 4-Oct; If a schedule is provided fo