Search found 6 matches

Go to advanced search

by sue_impact
Mon Jun 18, 2007 11:11 am
Forum: Common Problems
Topic: Java service recovery
Replies: 3
Views: 5197
 
Jump to post

Service recovery on Windows 2000

This custom action works fine on XP but I can't find an equivalent to sc for Windows 2000. Is it possible to set the recovery options for Window 2000?

Thanks

Sue
by sue_impact
Mon Jun 04, 2007 11:30 am
Forum: Common Problems
Topic: Java service memory leak
Replies: 1
Views: 2629
 
Jump to post

Java service memory leak

I have a problem with my Java service running out of memory. The code is essentially:

welcomeSocket = new ServerSocket(triggerPort);
welcomeSocket.setSoTimeout(3000);
while(running) {
try { connectionSocket = welcomeSocket.accept();
if (connectionSocket != null) {
ReaderThread t = new ...
by sue_impact
Thu May 18, 2006 3:24 pm
Forum: Common Problems
Topic: Java service recovery
Replies: 3
Views: 5197
 
Jump to post

Java service recovery

Is it possible to set the recovery options for a Java service? If the service fails at any time I want it to automatically restart.
by sue_impact
Thu May 11, 2006 5:38 pm
Forum: Common Problems
Topic: Force installation of this prerequisite
Replies: 1
Views: 3697
 
Jump to post

Force installation of this prerequisite

If I don't tick this box and the prerequisite is missing will the installation just continue or will a warning message be given?
by sue_impact
Fri Feb 03, 2006 5:20 pm
Forum: Common Problems
Topic: Java service stops when user logs off
Replies: 2
Views: 4299
 
Jump to post

Problem fixed. I found a reference to the -Xrs parameter in another thread which seems to solve it.

It would be useful to mention this in the Java service tutorial as it took me a while to work out which option corresponds to this parameter.
by sue_impact
Fri Feb 03, 2006 3:13 pm
Forum: Common Problems
Topic: Java service stops when user logs off
Replies: 2
Views: 4299
 
Jump to post

Java service stops when user logs off

I have installed my Java application as a service but when the user logs out the service stops. What do I need to set to keep the service running when the user is not logged in?

Thanks

Sue

Go to advanced search