Re: Camel shutdown on windows

2010-08-27 Thread vcheruvu
I did bit of investigation at eclipse side and noticed that Eclipse only invokes terminate and doesn't call Ctr C equivalent shutdown. There is an existing bug in eclipse as shown below which won't be fixed. https://bugs.eclipse.org/bugs/show_bug.cgi?id=38016 So, i have found a way to initiat

Re: Camel shutdown on windows

2010-08-26 Thread Willem Jiang
I'm not sure how the Eclipse stop the process that it start. But if you use Java to run the Main class, you can stop the Main by using the ctrl + c. If you take a look at the Main class, it register a HangupInterceptor and it will close the Spring Application context which it starts. Willem