-
Bug
-
Resolution: Fixed
-
P3
-
1.0, 1.1, 1.4.0, 5.0
-
beta
-
generic, sparc
-
generic, linux_redhat_3.0, solaris_2.6, solaris_7
If a remote object is exported by a call to
UnicastRemoteObject.exportObject(obj, port), and later unexported
by a call to UnicastRemoteObject.unexportObject(obj, true), the port is still
being used.
The following code shows the problem:
import java.rmi.registry.LocateRegistry;
import java.io.*;
import java.rmi.server.*;
import java.net.*;
import java.rmi.*;
public class ExportTest {
public static void main(String[] args) throws Exception {
int port = 10001;
ExpObj obj = (ExpObj) new ExpObjImpl();
UnicastRemoteObject.exportObject(obj, port);
UnicastRemoteObject.unexportObject(obj, true);
try {
ServerSocket s = new ServerSocket(port);
} catch (IOException e) {
System.out.println("Got an exception in creating ServerSocket");
e.printStackTrace();
}
}
}
interface ExpObj extends java.rmi.Remote {
}
class ExpObjImpl implements ExpObj {
public ExpObjImpl() throws RemoteException {}
}
The output is:
Got an exception in creating ServerSocket
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:397)
at java.net.ServerSocket.<init>(ServerSocket.java:170)
at java.net.ServerSocket.<init>(ServerSocket.java:82)
at ExportTest.main(ExportTest.java:14)
UnicastRemoteObject.exportObject(obj, port), and later unexported
by a call to UnicastRemoteObject.unexportObject(obj, true), the port is still
being used.
The following code shows the problem:
import java.rmi.registry.LocateRegistry;
import java.io.*;
import java.rmi.server.*;
import java.net.*;
import java.rmi.*;
public class ExportTest {
public static void main(String[] args) throws Exception {
int port = 10001;
ExpObj obj = (ExpObj) new ExpObjImpl();
UnicastRemoteObject.exportObject(obj, port);
UnicastRemoteObject.unexportObject(obj, true);
try {
ServerSocket s = new ServerSocket(port);
} catch (IOException e) {
System.out.println("Got an exception in creating ServerSocket");
e.printStackTrace();
}
}
}
interface ExpObj extends java.rmi.Remote {
}
class ExpObjImpl implements ExpObj {
public ExpObjImpl() throws RemoteException {}
}
The output is:
Got an exception in creating ServerSocket
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:397)
at java.net.ServerSocket.<init>(ServerSocket.java:170)
at java.net.ServerSocket.<init>(ServerSocket.java:82)
at ExportTest.main(ExportTest.java:14)
- duplicates
-
JDK-4508962 Unable to remove RMI registry once it was created
-
- Closed
-
- relates to
-
JDK-6279965 complete 4457683 fix: release server socket originally created for exports on anonymous ports too
-
- Open
-
-
JDK-6275081 Significant slowdown when creating/releasing a JMX rmi/jrmp connector server starting with b36
-
- Resolved
-