Re: Configuring cxfEndpoint to make secure (HTTPS) : need help

2011-10-09 Thread chavva2...@gmail.com
Hi Willem, Thanks for your reply. Am using Camel 2.5.0, need your help in configuration of HTTPS Webservices using CXF component via spring configuration. In to run my main program loading following Spring configuration file using ClassPathXmlApplicationContext("Configuration.xml"); While tryin

Re: Compile Exception: 2.8.1

2011-10-09 Thread Claus Ibsen
Hi Yeah as mentioned upgrading to a newer release of the JDK often fixes this problem. What OS and JDK are you using? I have backported that commit Babak mentioned, and will be part of Camel 2.8.2. On Sun, Oct 9, 2011 at 8:01 AM, karafman wrote: > On the 2.8.1 branch, when compiling using the

Re: Updating cached content without restart?

2011-10-09 Thread Claus Ibsen
On Sat, Oct 8, 2011 at 7:32 PM, Kleczka Peter John wrote: > Hi > > I am using Spring for my Camel routes.  I have an XSLT component that calls > for the style sheet over HTTP.  If that resource changes I have to restart > ActiveMQ.  I read that I could use Camel 2.6 and turn off caching on the X

Re: Compile Exception: 2.8.1

2011-10-09 Thread bvahdat
Hi Claus, thanks for backporting . 1. Is there any plan for a talk on Apache Camel in Switzerland in the near feature, like the ones you'll give in France & England? 2. BTW I assume you didn't see the following as it got not accepted by the mailing list: http://camel.465427.n5.nabble.com/svn-com

Re: Copying files from an FTP server using search criteria

2011-10-09 Thread Claus Ibsen
Hi Welcome to the Camel community. You can code a custom filter and use that on the SFTP endpoint Since the FTP component inherits almost all the options from the File component. You can find more details here http://camel.apache.org/file2 The filter class should be of type: org.apache.camel.co

Re: Compile Exception: 2.8.1

2011-10-09 Thread Claus Ibsen
On Sun, Oct 9, 2011 at 10:14 AM, bvahdat wrote: > Hi Claus, > > thanks for backporting . > > 1. Is there any plan for a talk on Apache Camel in Switzerland in the near > feature, like the ones you'll give in France & England? > 2. BTW I assume you didn't see the following as it got not accepted by

Re: Compile Exception: 2.8.1

2011-10-09 Thread Claus Ibsen
On Sun, Oct 9, 2011 at 10:17 AM, Claus Ibsen wrote: > On Sun, Oct 9, 2011 at 10:14 AM, bvahdat wrote: >> Hi Claus, >> >> thanks for backporting . >> >> 1. Is there any plan for a talk on Apache Camel in Switzerland in the near >> feature, like the ones you'll give in France & England? FuseSource

Re: Compile Exception: 2.8.1

2011-10-09 Thread bvahdat
I would say Zurich would be the best fit for Switzerland where the heart of IT is beating, but the second option could be Geneva as well. I will look for/contact organizers around here in Zurich to see if we could organize one, however IMHO the best match would be "Java User Group Switzerland": h

Re: Copying files from an FTP server using search criteria

2011-10-09 Thread newbiee
Claus Ibsen: Thank you for the great feedback. It seems that I will have to recursively read all the files from all the folders and using the custom filter will prevent the files from being copies to the destination folder. I would like to know if there is a way to read the folder name so that I

Re: Camel JBI Interaction

2011-10-09 Thread diwakar
Hi, Does not seem to work. The sa zip, the camel file and the error log are attached. I have tried jbi:service and jbi:endpoint. Both dint work. Please let me know your comment. With Best Regards, Diwakar -- View this message in context: http://camel.46542

Re: Containers for Camel

2011-10-09 Thread Richard Kettelerij
Camel doesn't mandate a particular container. You can run Camel: - As a standalone console application (http://camel.apache.org/running-camel-standalone-and-have-it-keep-running.html) - Inside a servlet container (e.g. Tomcat, http://camel.apache.org/servlet-tomcat-example.html) - Inside a full JE

Re: Event driven configuration using Camel - Is it feasible or a misuse of the framework.

2011-10-09 Thread Mark Doyle
Hi Christian, Thanks for the input. I was, perhaps mistakenly, using the term Channel as a generic term for all queues, topics and the like. The more I think about it, the more I think a simple publish subscribe set-up (e.g. a JMS Topic) would work if it had one strange addition, that is, the mes

Re: Event driven configuration using Camel - Is it feasible or a misuse of the framework.

2011-10-09 Thread Christian Schneider
The problem with messaging is exactly that it does not hold state. So if you need to use messaging you could make the sender repeat the message regularly so late subscribers would get it. If several source can change the state that will not work. If a central server is ok for you then a simpl

Re: Thread pool for components in Camel

2011-10-09 Thread diwakar
Hi, With this we can have 10 threads for the logging and the file writing indpoints. But how to configure 10 threads for the poller (file:input)? Please let me know your comment. With Bets Regards, Diwakar -- View this message i

Re: TypeConversion with JAXB when calling "remote" EJB

2011-10-09 Thread smythewin
Hi, I investigated a little further on this conversion issue between a camel artifact and an ejb artifact deployt on the same container. >From this I can state two thing: 1. deploying the camel route as a dependency of the web archive works fine. Tthis would have satisfy Willem.Jiang's remark .