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?
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.
|
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... |
|||
|
|
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 ?" |
|||
|
|
does't work. Specific error messages, incorrect behavior, any other observations? – Seva Titov Feb 1 at 2:05