Re: Incompatible types in Object mailBody = template.sendBody()

2013-06-17 Thread Claus Ibsen
Hi You should use requestBody instead of sendBody. I assume you may have downloaded that old code which was attached as a .zip file to the documentation of the tutorial? If so that code is old as its about 5 years old when that tutorial was written, and based on Camel 1.x API. So basically in Ca

Re: MailComponent/MailConsumer misses Mails

2013-06-17 Thread cgiera
Hello, thx for the reply. I've updated to camel 2.11.0 and java mail 1.5 before I've begun the testing. So all the log's from the previous posts are already from the newest version. On my local system I've tested the workaround with fetchSize=1, here both versions 2.6.0 and 2.11.0 are working for

Re: In came-quartz route after bundle update jobs are not triggred.

2013-06-17 Thread Claus Ibsen
Hi I logged a ticket about this https://issues.apache.org/jira/browse/CAMEL-6461 On Fri, Jun 14, 2013 at 9:51 AM, pradeep wrote: > > In came-quartz route after bundle update jobs are not triggred. > I created a small example for camel-quartz with persistence(Quatz mysql > database). My bluepri

two way ssl with a camel cxf proxy use case on Tomcat

2013-06-17 Thread Nico Mommaerts
Hey, I'm trying to setup a Camel CXF proxy with two way ssl (message gets sent to camel app over http, camel forwards to an external customer over https, 2 way). My Camel app is running on Tomcat (without Jetty running for CXF, I'm using the CXFServlet). I have experience in setting up Tomcat for

Re: two way ssl with a camel cxf proxy use case on Tomcat

2013-06-17 Thread Aki Yoshida
you configure the ssl setting at your http conduit configuration. and this is explained in this cxf's online documentation: http://cxf.apache.org/docs/client-http-transport-including-ssl-support.html#ClientHTTPTransport%28includingSSLsupport%29-ConfiguringSSLSupport regards, aki 2013/6/17 Nico M

Re: two way ssl with a camel cxf proxy use case on Tomcat

2013-06-17 Thread Nico Mommaerts
Ok thanks! Had already read that but wasn't sure if that was needed if ssl is also defined in Tomcat itself (is it harmful to also configure it there?) On Mon, Jun 17, 2013 at 4:35 PM, Aki Yoshida wrote: > you configure the ssl setting at your http conduit configuration. > and this is explained

camel deployment options...

2013-06-17 Thread boday
I have a complex/high volume (1k msgs/s) Camel application running in ActiveMQ that I need to scale up (2-5x traffic). To date, we scaled by adding more AMQ/Camel VMs and partitioned traffic to each broker. My thought is that decoupling Camel from AMQ and adding nodes independently is a better wa

consumer\producer only endpoint

2013-06-17 Thread javamonkey79
With custom endpoints that have only a producer or only a consumer, do you just return null in the endpoint class, or is there something special you have to do? Thanks! -- View this message in context: http://camel.465427.n5.nabble.com/consumer-producer-only-endpoint-tp5734268.html Sent from t

Exception when using FTP as endpoint

2013-06-17 Thread Richa
I have two camel routes. The first camel route takes input from JMS and sends to FTP location. Also, the first rotue sends that file to a seda location. This seda location is the input for the second route which again processes the file and sends it to the same FTP location. But when I run this rou

Re: Regarding auto_delete_after

2013-06-17 Thread indrayani
hi, I asked the question on activemq forum and they asked me to post the same on camel forum , so posting the same question here. I am using activemq with camel ,I have defined routes like : 1) from servletA to actimq A 2) from activemq A to servletB 3) from servletB to activemq C 4) from ac

Re: consumer\producer only endpoint

2013-06-17 Thread Claus Ibsen
The practice is to thrown an unsupported operation exception etc. On Tue, Jun 18, 2013 at 1:18 AM, javamonkey79 wrote: > With custom endpoints that have only a producer or only a consumer, do you > just return null in the endpoint class, or is there something special you > have to do? > > Thank