Linked Questions

15 votes
3 answers
41k views

I have a JAR file and I would like to register and run it as a Windows service. With a well-configured JAR and already registered JVM shutdown hooks it should not be a big work to do this. I already ...
BTakacs's user avatar
  • 2,427
1 vote
0 answers
4k views

I am trying to create service from JAR file and after some research I was able to create window service using SC sc create "ServiceName" binPath= "PathToJava.exe -jar PathToJarFile" but when I tried ...
Vivek Kaushik's user avatar
242 votes
20 answers
357k views

I've just inherited a Java application that needs to be installed as a service on XP and Vista. It's been about 8 years since I've used Windows in any form and I've never had to create a service, let ...
17 votes
8 answers
29k views

So that we may perform front-to-back web UI testing, we are using Selenium and ChromeDriver to automate page loads/interaction as part of our testing pack. This is behaving as expected during ...
jwa's user avatar
  • 3,307
8 votes
2 answers
30k views

I have developed a server [server.jar], and it is now working well (on my localhost). Now I want to "put" this server.jar on my remote server (ie: 122.152.12.33) and run it there, so My client ...
EsmaeelQash's user avatar
3 votes
2 answers
13k views

Can anyone help me in either providing me some right direction towards using yajsw using java language to use java application as service or just provide me some basic code of hello world application ...
Wearybands's user avatar
  • 2,465
1 vote
0 answers
3k views

I am trying to create windows service with below code $params = @{ Name = "abc" BinaryPathName = "C:\Users\dell\Downloads\abinstall\abc.exe" DisplayName = "Windows ...
SRJ's user avatar
  • 2,956
1 vote
1 answer
329 views

Recently I developed a jar file with JavaFX. Now my problem is how to convert it into an executable so it can install and run on other systems which do not have any JDK installed. Also, when the ...
Rocky's user avatar
  • 451
0 votes
2 answers
533 views

I have some project which I build with jetty. I create server from code like Server server = new Server(8082); server.setHandler(new DefaultRequestHandler()); server.start(); server....
user2281439's user avatar
-2 votes
1 answer
94 views

i've made a java aplication that displays the current time as a digital clock, and i would like to make the file automatically run after the mouse isn't moved for 10 minutes.Does anyone have any ideas?...
Silviu Grada's user avatar