0

I have a headless Eclipse application that I would like to run as a Windows Service. Is this possible and where could I find more information on how to make this work?

JRSofty
  • 1,216
  • 1
  • 24
  • 49

1 Answers1

0

Eclipse being a Java App, this previous answer may work for you: How to create a windows service from java app

Community
  • 1
  • 1
Ed.
  • 1,172
  • 6
  • 9
  • This then raises the question, if Eclipse exports the project already with a .exe launcher/wrapper, why should I wrap it again with another product? The reason for using Eclipse was for the extensibility, and that it already created the application with a Windows executable wrapper. I'm looking to know if Eclipse's exe can be made to work as a service wrapper as well. – JRSofty Mar 17 '11 at 04:52
  • I would do away with the launcher, having Java Service Wrapper directly launch eclipse. From the eclipse docs: java -jar plugins/org.eclipse.equinox.launcher_1.0.0.v20070606.jar http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/launcher.html – Ed. Mar 17 '11 at 13:01
  • Some details from others than have done this... http://dev.eclipse.org/newslists/news.eclipse.newcomer/msg24884.html – Ed. Mar 17 '11 at 13:05
  • Although this isn't exactly what I was wanting, it seems the only real way of handling this issue. I've talked it over with my team and we have also found a similar route with Yet Another Java Service Wrapper which seems to fit the bill. Thanks for the help. – JRSofty Mar 22 '11 at 06:19