String old = System
.getProperty("javax.rmi.ssl.client.enabledCipherSuites");
try {
System.setProperty("javax.rmi.ssl.client.enabledCipherSuites",
"Incorrect");
ssocket = factorySrv.createServerSocket(0);
try {
factoryCln.createSocket("localhost", ssocket.getLocalPort());
fail("No expected IOException");
} catch (IOException e) {
}