Re: Multiple camelContext elements in camel 2.0.m2 Spring DSL

2009-07-01 Thread sriramch
Claus, I have created the following JIRA issue: https://issues.apache.org/activemq/browse/CAMEL-1780 Sriram Claus Ibsen-2 wrote: > > On Wed, Jul 1, 2009 at 8:39 PM, sriramch wrote: >> >> Thanks for your reply. This is a web-app and I was able to breakup my 1 >> conte

Re: Multiple camelContext elements in camel 2.0.m2 Spring DSL

2009-07-01 Thread sriramch
hanks Sriram Claus Ibsen-2 wrote: > > On Wed, Jul 1, 2009 at 6:53 PM, sriramch wrote: >> >> Hi, >> I have multiple routes defined in a camelContext element in a single >> Spring >> context file. Its become very large with lots of routes that don't >>

Multiple camelContext elements in camel 2.0.m2 Spring DSL

2009-07-01 Thread sriramch
Hi, I have multiple routes defined in a camelContext element in a single Spring context file. Its become very large with lots of routes that don't necessarily depend on each other. Is it possible to break it up into multiple Spring context files under separate camelContext definitions for better r

File endpoint and GzipDataFormat question

2009-06-23 Thread sriramch
I am using the latest camel 2.0-m2 release. I have a list of gzipped file in a step within a route. I need to extract the contents from the gzipped location and then based on 1 of 3 types of tokens in the filename, I need to pass the extracted filename to 3 different beans. My route looks like the

camel bean processor question

2009-06-19 Thread sriramch
I am trying to route to a bean instance by specifying a method-name using Camel 1.6. This specific route is defined as below: The method myMethod is overloaded public void myMethod(){ } public void myMethod(Date date){ } Depending on how I order my methods in the class, either of these seem

Re: Executing a Quartz Endpoint on demand

2009-06-18 Thread sriramch
do-whaterver-you-want(...); > > and then your route will be triggered both by quartz and by you > sending a message to the direct:start endpoint. You could use seda or > jms (instead of direct) for asynchronous processing, what is best > depends on your application. > &g

Executing a Quartz Endpoint on demand

2009-06-18 Thread sriramch
I have defined a Quartz endpoint which I'd also like to from an on-demand service (outside the schedule defined by the Quartz endpoint configuration). However when I try this using ProducerTemplate:sendBody method, I get an exception that says 'You cannot send messages to this endpoint'. Is there

Quartz redelivery question

2009-06-17 Thread sriramch
I am using camel 1.6.0. I have a quartz end point setup via Spring DSL for performing an ETL process step as following: java.lang.Exception