Re: Looking for example init.d script for starting a camel-based application on system boot

2012-08-05 Thread Willem jiang
Thanks for sharing this with us. -- Willem jiang On Monday, August 6, 2012 at 12:38 AM, aedwards wrote: > sorry about the late reply. > > Here is a script i've used before which does what you're looking for. > > https://github.com/abedwardsw/samples/blob/master/scripts/springc-initd > > >

Re: Looking for example init.d script for starting a camel-based application on system boot

2012-08-05 Thread aedwards
sorry about the late reply. Here is a script i've used before which does what you're looking for. https://github.com/abedwardsw/samples/blob/master/scripts/springc-initd -- View this message in context: http://camel.465427.n5.nabble.com/Looking-for-example-init-d-script-for-starting-a-camel-b

Re: Looking for example init.d script for starting a camel-based application on system boot

2012-04-09 Thread Claus Ibsen
On Mon, Apr 9, 2012 at 5:07 AM, Aaron Daubman wrote: > Greetings, > > I'm wondering if anybody has any example/working/in-use init.d scripts used > to start up a standalone camel-based app? > > I'm currently using the Main class from camel-spring, but am flexible. I am > not using any container...

Re: Looking for example init.d script for starting a camel-based application on system boot

2012-04-09 Thread Willem Jiang
Hi, You can start the camel route as a common java programe as the url you found in the camel web site. There is no any other specific option you should specify for the common use case. I think you can copy the tomcat one by using the org.apache.camel.Main as the main class. On Mon Apr 9 11

Looking for example init.d script for starting a camel-based application on system boot

2012-04-08 Thread Aaron Daubman
Greetings, I'm wondering if anybody has any example/working/in-use init.d scripts used to start up a standalone camel-based app? I'm currently using the Main class from camel-spring, but am flexible. I am not using any container... I have read through Camel In Action Chapter 13 as well as http:/