diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-26 15:44:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-26 15:44:23 +0000 |
commit | b4d4280b01ee02fd05046b657b06e5fe745becde (patch) | |
tree | ec09f8ccac8b0de03d9efcfac65277529daf225b /java/test/IceSSL/configuration/AllTests.java | |
parent | Updated icon (diff) | |
download | ice-b4d4280b01ee02fd05046b657b06e5fe745becde.tar.bz2 ice-b4d4280b01ee02fd05046b657b06e5fe745becde.tar.xz ice-b4d4280b01ee02fd05046b657b06e5fe745becde.zip |
More changes to inconsistent ice_ proxy methods
Diffstat (limited to 'java/test/IceSSL/configuration/AllTests.java')
-rw-r--r-- | java/test/IceSSL/configuration/AllTests.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/test/IceSSL/configuration/AllTests.java b/java/test/IceSSL/configuration/AllTests.java index fee65402387..1b8f565def2 100644 --- a/java/test/IceSSL/configuration/AllTests.java +++ b/java/test/IceSSL/configuration/AllTests.java @@ -243,7 +243,7 @@ public class AllTests // try { - IceSSL.ConnectionInfo info = IceSSL.Util.getConnectionInfo(server.ice_connection()); + IceSSL.ConnectionInfo info = IceSSL.Util.getConnectionInfo(server.ice_getConnection()); test(info.certs.length == 2); } catch(IceSSL.ConnectionInvalidException ex) @@ -372,7 +372,7 @@ public class AllTests java.security.cert.X509Certificate caCert = (java.security.cert.X509Certificate)serverKeystore.getCertificate("cacert"); - IceSSL.ConnectionInfo info = IceSSL.Util.getConnectionInfo(server.ice_connection()); + IceSSL.ConnectionInfo info = IceSSL.Util.getConnectionInfo(server.ice_getConnection()); test(info.certs.length == 2); @@ -513,7 +513,7 @@ public class AllTests { String cipherSub = "DH_anon"; server.checkCipher(cipherSub); - IceSSL.ConnectionInfo info = IceSSL.Util.getConnectionInfo(server.ice_connection()); + IceSSL.ConnectionInfo info = IceSSL.Util.getConnectionInfo(server.ice_getConnection()); test(info.cipher.indexOf(cipherSub) >= 0); } catch(Ice.LocalException ex) @@ -529,7 +529,7 @@ public class AllTests // verifier.reset(); verifier.returnValue(false); - server.ice_connection().close(false); + server.ice_getConnection().close(false); try { server.ice_ping(); |