Re: Camel with BeanFactory

2013-04-30 Thread kalyand
Hello Claus, Thank you for the reply. If I can elaborate my scenario, I want camel to run on a tomcat and there are few core modules of a proprietary framework already deployed (which use spring 3.2.0.Release). When a WAR is deployed, it will have a BeanFactory implementation class (and not

Re: Camel with BeanFactory

2013-04-30 Thread kalyand
Hi again.. I'm checking camel-spring currently and experimenting with few classes. My goals are in the following order: - Get Java DSL working and the Routes be Spring-injected so that I could pump in some data by fetching it from database - Get Dataformats and transformations working - To be

Re: Camel with BeanFactory

2013-04-30 Thread kalyand
Thanks a lot for your suggestions. I will try to follow your guidelines and shall keep you posted -- View this message in context: http://camel.465427.n5.nabble.com/Camel-with-BeanFactory-tp5731764p5731816.html Sent from the Camel - Users mailing list archive at Nabble.com.

Camel with BeanFactory

2013-04-29 Thread kalyand
Hello, I understand by skimming over Camel's source code that it uses ApplicationContext everywhere. In a project that I'm working on, I HAVE to use BeanFactory only. Is it possible to initialize and use Camel's capabilities in a BeanFactory instead of ApplicationContext at all ? If so, what