Re: RAW option dosen't work in case of Spring DSL URI

2013-11-17 Thread sabri.bousselmi
Thanks a lot. I tested and it's well working. -- View this message in context: http://camel.465427.n5.nabble.com/RAW-option-dosen-t-work-in-case-of-Spring-DSL-URI-tp5743346p5743351.html Sent from the Camel - Users mailing list archive at Nabble.com.

after setting trigger.repeatCount=1 then also going to infinite scheduler

2013-11-17 Thread ishwar
hi. after setting repeatcount=1 then also my scheduler is continuously running.. i dont know where i made mistake. this is my code. public class Schedule { public String SayService(String msg) { return (msg); } public static

Help with properites resolution

2013-11-17 Thread piyushbhatt
Hi, We are using camel FTP and file component and have built an FTP service. We have multiple FTP servers to which we connect and send/receive data. The file types which we pull/push are same across customers and so routes are similar with only differentiating factor being the data specific to ea

Re: getting exception whicle setting quartz2 from server

2013-11-17 Thread Willem jiang
It looks you didn’t put the camel-quartz2 into your class path. -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/) (English) http://jnn.iteye.com (http://jnn.javaeye.com/) (Chinese) Twitter: willemjiang

Re: Simple way of calling WS under Tomcat - whole url?

2013-11-17 Thread Willem jiang
Hi, Did you know the full address of the Service which is deployed into Tomcat? You can still use the full address for the rec1 and rec2 in your route, as they are just the client, they need to full address to access the services which are deployed into Tomcat. -- Willem Jiang Red Hat, Inc.

Re: Camel properties component not being resolved when configuring data source

2013-11-17 Thread Willem jiang
You need to use BridgePropertyPlaceholderConfigurer[1] to let Spring and Camel knows about the properties file. [1]http://camel.apache.org/properties.html#Properties-BridgingSpringandCamelpropertyplaceholders -- Willem Jiang Red Hat, Inc. Web: http://www.redhat.com Blog: http://willemjiang

Re: typesafe endpoint configuration approach

2013-11-17 Thread Willem jiang
Hi, I’m not a not a big fan of this type safe endpoint configuration. As the endpoints are different from each other, you cannot define a unified fluent API for all the endpoints. But Camel does support to define the Endpoint in the pure Java way, but it is not as easy as using the URI to set

getting exception whicle setting quartz2 from server

2013-11-17 Thread ishwar
hi. i need to set the scheduler at run time.when i am calling quartz2 from main method then its working fine.but when i am calling from Restful services then its giving me exception. this is my method which is set the quartz2 scheduler. public void create(final String cronExp,final int day)

Simple way of calling WS under Tomcat - whole url?

2013-11-17 Thread moldur
Hi, Scenario: Simple soap router based on content (body:envelope:element). Router would be getting soap request and sending to two nearly the same web services according to value of one of the soap elements. Router is deployed on the same tomcat as fist receiver. But the second destination WS i

Re: Parallel file processing with Camel

2013-11-17 Thread piyushbhatt
Hi Claus, Is it available as part of XML configuration ? If yes can you point me to some example Regards Piyush -- View this message in context: http://camel.465427.n5.nabble.com/Parallel-file-processing-with-Camel-tp5742049p5743378.html Sent from the Camel - Users mailing list archive at Nab

alternative endpoint configuration approach

2013-11-17 Thread Christian Schaefer
Hello there, after working with a camel for some months I wondered from time to time if there is a possibility to define endpoints a bit nicer because writing URI strings is prone to typos/property-mismatch and (imho) not really supported by an IDE. Furthermore the developing includes writing c

Re: Camel to Webservice call

2013-11-17 Thread Malathi G
Hi Willem, I have changed cxf-bundle version to cxf-api version. Now camel to webservice call is working. Thank you for reply. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-to-Webservice-call-tp5743325p5743376.html Sent from the Camel - Users mailing list archive a

Camel properties component not being resolved when configuring data source

2013-11-17 Thread Joao Vicente
I am having some trouble getting a data source setup using Camel properties component. So, I have a db.properties that contains configuration for my datasource (showing only url for brevity) My route builder seems to be able to resolve the property, but the data source does not seem to do so. The e

Re: Multiple endpoints with SSL by using http component

2013-11-17 Thread martin11
I found nice blog about multiple SSL keystores: http://codyaray.com/2013/04/multiple-keystores-in-apache-camelhttpclient I will try it by this way. -- View this message in context: http://camel.465427.n5.nabble.com/Mu

Efficient transport for remoting behind firewall ?

2013-11-17 Thread Garbage
Hello, I search an efficient transport for remoting behind a firewall. I need to control several hundred machines in several 100 locations that are all behind a firewall (one firewall for each site). That firewall: - denies incoming connection / opening of ports - allows outgoing connections, be

typesafe endpoint configuration approach

2013-11-17 Thread ChristianSchaefer
Hello there, after working with a camel for some months I wondered from time to time if there is a possibility to define endpoints a bit more typesafe way because writing URI strings is prone to typos/property-mismatch and (imho) not really supported by an IDE. Furthermore the developing includes

Re: Ideas on how to structure JPA endpoint application

2013-11-17 Thread richie.rivi...@gmail.com
Forget this question. I solved it myself. Instead of splitting the ItemDocument into individual items I chose not to split and then in the TypeConverter I just convert everything that I have parsed using JaxB. It seems to be pretty permanent. But I'm still not sure if it's a great idea to just lo