{
ServerSocket sSocket = new ServerSocket(4321);
Socket socket = new Socket((String)null, 4321);
ServerIIOPConnection serverIIOPConnection = new ServerIIOPConnection(socket, false, null);
serverIIOPConnection.configure(((org.jacorb.orb.ORB)orb).getConfiguration());
assertEquals(1, serverIIOPConnection.get_server_profile().version().minor);
socket.close();
sSocket.close();