Re: Help with setting multiple parameters with SQL

2012-06-05 Thread Deepthi
If i want to generate 1 thread for each of the row retrieved by executing select statement, using quartz will not help me rite? How can I implement it? -- View this message in context: http://camel.465427.n5.nabble.com/Help-with-setting-multiple-parameters-with-SQL-tp5714000p5714033.html Sent fr

Re: Transacted vs DeadLetterQueue

2012-06-05 Thread gramanero
Thanks for the response Christian. I have been reading through the Camel in Action and ActiveMQ in Action books most of the day today. I'm starting to get a better understanding of how transactions work and that definitely seems like the way to go. Also, seems like the DLQ and transactions work t

Re: [FTP] Sending a file via FTP from a Windows machine to a Linux machine creates a new folder

2012-06-05 Thread Claus Ibsen
Hi You can use the separator option to tell Camel if the FTP server is unix or windows based http://camel.apache.org/ftp2 On Tue, Jun 5, 2012 at 6:42 PM, Aida wrote: > Hi, > > I'm writting because I am having trouble trying to send a file via FTP. What > happens is that the file is sent and it i

[FTP] Sending a file via FTP from a Windows machine to a Linux machine creates a new folder

2012-06-05 Thread Aida
Hi, I'm writting because I am having trouble trying to send a file via FTP. What happens is that the file is sent and it is also written in my target directory (/myfolder/mydir) but, in addition, a folder with the name "\myfilder\mydir" is created. (It is not like when the directory does not exist

Re: Apache Camel Threading Model

2012-06-05 Thread Claus Ibsen
Hi See this EIP pattern http://camel.apache.org/pipes-and-filters.html Camel will process the messages in sequence using the same thread. There is a multicast EIP (and the option parallelProcessing=true) allows to use multiple threads. http://camel.apache.org/multicast And some notes about thre

Re: Help with setting multiple parameters with SQL

2012-06-05 Thread Claus Ibsen
On Tue, Jun 5, 2012 at 5:39 PM, Deepthi wrote: > Hi Claus, > > Can we give sql statement as source also. > For Eg: > > > does camel 2.8.0 support this? > No, but you can use a timer / quartz component as source, to trigger calling the route by X interval. And then use a to call the SQL. The JP

Apache Camel Threading Model

2012-06-05 Thread sambardar
Hi, I have a basic question about how framework processes the messages. If i have something like this: In this case i have multiple processors for the message. Would this processing be serialized or Camel will send the message in parallel to each processor ? Thanks -- View this message in

Re: Help with setting multiple parameters with SQL

2012-06-05 Thread Deepthi
Hi Claus, Can we give sql statement as source also. For Eg: does camel 2.8.0 support this? Thanks, Deepthi -- View this message in context: http://camel.465427.n5.nabble.com/Help-with-setting-multiple-parameters-with-SQL-tp5714000p5714025.html Sent from the Camel - Users mailing list archive

org.xml.sax.SAXParseException: s4s-elt-invalid-content.1: The content of 'schema' is invalid. Element 'import' is invalid, misplaced, or occurs too often.

2012-06-05 Thread Hervé BARRAULT
Hi, I'm using camel 2.4.0.fuse-00-00 (linked to cxf 2.2.9.fuse-01-00). I have deployed 2 webservices using camel-cxf : http://0.0.0.0:8081/notification"; serviceClass="com.example.cxf.NotificationPojoProvider"> http://0.0.0.0:8081/subscription";

Re: Camel SMPP Retry at startup

2012-06-05 Thread cannotcode
Hi Claus, Thanks for the info, it worked out. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-SMPP-Retry-at-startup-tp5713850p5714006.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Help with setting multiple parameters with SQL

2012-06-05 Thread Claus Ibsen
Hi A good idea can be to check the unit tests of a component when in doubt. And of course as well read the doc page of the sql component http://camel.apache.org/sql-component.html You can see that it says the message body will be iterated (see the sample code comments), so you can for example us