Name: rlT66838 Date: 07/27/99
If I start a remote server, create a separate process in the server, kill the server (ctrl-c) but leave the created process running and tries to access the killed server, the remote method call hangs.
Repro:
1) javac RemoteLauncher.java RemoteLauncherImpl.java Client.java (Source codes provided below.)
2) rmic RemoeteLauncherImpl
3) start rmiregistry
4) start java RemoeteLauncherImpl (The server starts and opens a notepad.)
5) Leave the notepad open and kill the server process (ctrl-c in 'java RemoteLauncherImpl' dos window)
6) java client (Note that the remote method call hangs. Also note that the call comes back with ConnectException once the notepad is closed, which is correct behavior.)
// RemoteLauncher.java
import java.rmi.*;
public interface RemoteLauncher extends Remote
{
public boolean check() throws RemoteException;
}
// RemoteLauncherImpl.java
import java.rmi.*;
import java.rmi.server.*;
import java.io.*;
public class RemoteLauncherImpl extends UnicastRemoteObject implements RemoteLauncher
{
public RemoteLauncherImpl() throws RemoteException, SecurityException, IOException
{
// create an independent process
Runtime.getRuntime().exec("cmd /c start notepad");
}
public boolean check()
{
return true;
}
public static void main(String[] args) throws Exception
{
RemoteLauncherImpl rli = new RemoteLauncherImpl();
Naming.rebind("rmi://localhost/RemoteLauncher", rli);
System.out.println("Registered RemoteLauncher.");
}
}
// Client.java
import java.rmi.*;
public class Client
{
public static void main(String args[]) throws Exception {
RemoteLauncher rl = (RemoteLauncher)Naming.lookup("rmi://localhost/RemoteLauncher");
System.out.println("rl.check()" + rl.check());
}
}
Desirable behavior:
The remote call should come back with ConnectException even if there is a running process created by the server.
C:\home\java\launcher_hang_repro>%jv% -version
java version "1.2.2"
Classic VM (build JDK-1.2.2-W, native threads, symcjit)
C:\home\java\launcher_hang_repro>%jv% -fullversion
java.exe full version "JDK-1.2.2-W"
(Review ID: 93116)
======================================================================
- duplicates
-
JDK-4197666 Socket descriptors leak into processes spawned by Java programs on windows
-
- Resolved
-