Camel-Quartz2 Trigger Issue

2021-06-09 Thread Vikas m.s
Hello Team, I am using a camel-quartz2 component in my application to trigger a job everyday. The component version I am using is 2.19.0, and I have clustered it using a database. The job is scheduled using the below cron expression to trigger everyday @ 2 AM. 0+0+2+*+*+?+* The issue I am facing

Re: Garceful shutdown bug in 2.0M3?

2009-08-28 Thread m.s.
hzbarcea wrote: > > I think there was an issue about daemon threads that sounded quite > similar. > > Hadrian > Thanks, I think you are referring to this discussion: http://www.nabble.com/-jira--Created%3A-%28CAMEL-1751%29-Camel-causes-Tomcat-shutdown-to-hang-td24172381s22882.html Adding "

Re: Garceful shutdown bug in 2.0M3?

2009-08-27 Thread m.s.
Here is some more information about my issue: I am using AMQ 5.2 and Camel 2.0. AMQ runs as a standalone application and I configure Camel and the AMQ component via the Spring applicationContext.xml. After stopping Tomcat, I get the following exception and Tomcat hangs: > 27.08.2009 16:05:01 o

Re: Garceful shutdown bug in 2.0M3?

2009-08-27 Thread m.s.
I run an application that uses the ActiveMQ-Component on Tomcat. The server hangs if I try to stop it and only shuts down if I stop ActiveMQ that is running as a stand-alone application. Is this related to the same problem? It seems that open connections to ActiveMQ are the reason for the server n

Stop route as part of error handling

2009-08-26 Thread m.s.
start the route when the endpoint is available again. Thank for any hints on how this could be done. M.S. -- View this message in context: http://www.nabble.com/Stop-route-as-part-of-error-handling-tp25166908p25166908.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel, openmq and tomcat: hangup on shutdown?

2009-08-20 Thread m.s.
cmmo wrote: > > The problem happens on tomcat shutdown: one of the activeMQ threads > (called "ActiveMQ Transport") doesn't stop after the camel context is > stopped, which is really not desirable as it prevents tomcat from > shutting down. > Did you come up with a solution for this? I enco

Re: Problem with JMS Component with PooledConnectionFactory

2009-08-18 Thread m.s.
Claus Ibsen-2 wrote: > > Yeah try the AMQ component that is optimized for Camel + AMQ. > http://camel.apache.org/activemq.html > Thanks, your both right. With the AMQ component, the performance is even slightly better than with the JMS component and the PooledConnectionFactory and I don't hav

Re: Problem with JMS Component with PooledConnectionFactory

2009-08-17 Thread m.s.
There is also another issue, but I am not sure if it is really related to the PooledConnectionFactory. But I think since I use the PooledConnectionFactory, the undeployment of my web application takes much longer and sometimes it hangs completly. Has anyone experienced something similar? -- View

Problem with JMS Component with PooledConnectionFactory

2009-08-17 Thread m.s.
connection pooling and prefetching as described here: http://activemq.apache.org/what-is-the-prefetch-limit-for.html With my configuration, is the PooledConnectionFactory only used for Producers or also for Consumers? Any help or useful hints on how to change my configuration is much appreciated! M.S

Camel-Esper

2009-07-14 Thread m.s.
Hi, I wonder if the Camel-Esper Component is still maintained. There was an update in February to make it work with Esper 3.0, but it was not added to the maven repository. Does any one know if it works with the new Esper 3.1 and the current Camel 2 Milestone? M.S. -- View this message in

Re: Setting a path in message header with Camel-http 2.0M1

2009-04-01 Thread m.s.
ot; between URI and Path. A unit test extending the HttpGetTest from the camel-http component is also included in the patch. M.S: -- View this message in context: http://www.nabble.com/Setting-a-path-in-message-header-with-Camel-http-2.0M1-tp22781504p22829424.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Setting a path in message header with Camel-http 2.0M1

2009-03-31 Thread m.s.
with "/" to avoid URIs like http://myUri//myPath . Could add it tomorrow if required. M.S. -- View this message in context: http://www.nabble.com/Setting-a-path-in-message-header-with-Camel-http-2.0M1-tp22781504p22817366.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Setting a path in message header with Camel-http 2.0M1

2009-03-31 Thread m.s.
ent, the URI is taken from the HTTP_URI header or the endpoint, but the HTTP_PATH header is not concatenated. M.S. -- View this message in context: http://www.nabble.com/Setting-a-path-in-message-header-with-Camel-http-2.0M1-tp22781504p22800487.html Sent from the Camel - Users mailing list archive at Nabble.com.

Setting a path in message header with Camel-http 2.0M1

2009-03-30 Thread m.s.
sent to http://localhost:8080/myService (or the URI defined in the endpoint if I delete the third line). Thanks for any hints on what I do wrong, M.S. -- View this message in context: http://www.nabble.com/Setting-a-path-in-message-header-with-Camel-http-2.0M1-tp22781504p22781504.html Sent from

Re: Starting, stopping and removing routes at runtime

2009-03-20 Thread m.s.
to define messaging routes. And as there are components in the application that are added or removed at runtime, I need to start or stop the corresponding routes at runtime as well. So I think it's good that there are methods in the Camel 2.0 API to this. M.S. Bruno Borges wrote: > > I

Re: Starting, stopping and removing routes at runtime

2009-03-18 Thread m.s.
ur that often, the current API and some additional code in the application is probably sufficient in most cases. M.S. -- View this message in context: http://www.nabble.com/Starting%2C-stopping-and-removing-routes-at-runtime-tp22370230p22578949.html Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.

Re: Starting, stopping and removing routes at runtime

2009-03-15 Thread m.s.
cepts? Cheers, M.S. James.Strachan wrote: > > 2009/3/6 m.s. : >> >> There are some older post on this topic in the forum, but I could not >> figure >> out if the answers are still up to date. So is it possible to remove >> routes >> from the CamelContext t

Re: Integartion with Glassfish

2009-03-10 Thread m.s.
application running in Glassfish without learning yet another framework. I try to figure out how an easy way on how to start the CamelContext on server startup and having access to it to add routes from a webservice running in the servlet container. Thanks for any help, M.S. -- View this message in c

Starting, stopping and removing routes at runtime

2009-03-06 Thread m.s.
is removed? I'm currently evaluating Camel 1.6 and the 2.0 Snapshot to figure out if it works in my application, so any information about this would be very helpful for me. M.S. -- View this message in context: http://www.nabble.com/Starting%2C-stopping-and-removing-routes-at-ru

Re: java.lang.NoClassDefFoundError when running CamelJmsToFileExample

2009-03-05 Thread m.s.
in a single archive? M.S. willem.jiang wrote: > > Yes. we don't ship all the dependencies in the binary distribution. > Because Camel has lots of components if we ship all the dependency jars, > the binary could be up to more than 100MB. > > Fortunately maven could hel

Re: java.lang.NoClassDefFoundError when running CamelJmsToFileExample

2009-03-05 Thread m.s.
Thanks, it works when I use Maven to download all the .jars listed in the dependency list and add them to the libraries in the NetBeans IDE. So is it correct that the binary distribution does not contain all dependencies if I use the JMS Component or aother component? M.S. -- View this message

Re: java.lang.NoClassDefFoundError when running CamelJmsToFileExample

2009-03-05 Thread m.s.
I've downloaded the windows binaries for camel 1.6 and tried do run the example in the NetBeans IDE. I added the required jars to the libraries. I also tried to run the example with maven, but just got another error: [INFO]

java.lang.NoClassDefFoundError when running CamelJmsToFileExample

2009-03-04 Thread m.s.
When I try to run the CamelJmsToFileExample, I get the exception below. Can anyone help to figure out what went wrong? Cheers, M.S: 04.03.2009 16:40:02 org.apache.camel.impl.DefaultCamelContext INFO: JMX enabled. Using InstrumentationLifecycleStrategy. Exception in thread "