Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a java app that connects to a database and inserts data to a .xlsx. The xlsx is then sent to a sharepoint site. This loops every 15 minutes. I created an executable jar with eclipse and have tested it using cmd and it works. I used javaexe to create an executable wrapper for the jar and tested that and it works. But when I try to create a scheduled task for this it doesn't work. I ideally would like to make it a service but I can't get it to work. Its running on windows server 2003 and I've tried using srvany.exe to run the exe or a batch file to run the executable jar. Neither work. I tried using nssm to and it didn't work. Am I missing Something?

share|improve this question
Elaborate what you mean by does't work. Specific error messages, incorrect behavior, any other observations? – Seva Titov Feb 1 at 2:05

2 Answers

You can run your JAR directly as a Windows Services with JavaExe (and it's very simple). Read the examples in JavaExe.zip (http://devwizard.free.fr/download/JavaExe.zip), and read the documentation, it's very very easy...

share|improve this answer
Seeing as this is your first answer, let me offer you some advice. Link only answers are generally discouraged. If the link breaks, then your answer is not going to offer any value to future users. You should try to add some information from the documentation on the usage. – psubsee2003 Feb 2 at 18:11

sorry, I have did not fully read your question... you use javaexe to run your Java application as standard application and another tool for the service. why don't you use directly JavaExe for the service ? as said Seva "what you mean by does't work ?"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.