diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-06-08 18:41:00 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-06-08 18:41:00 +0000 |
commit | 04dc6ede447b97084cc6da0be55484045037dc57 (patch) | |
tree | 180e6aa014b5b8096f6d44c9cb5ddfd2c93abf38 /java/test/Ice/exceptions/Client.java | |
parent | removing non 1.1 solution from 1.1 file list (diff) | |
download | ice-04dc6ede447b97084cc6da0be55484045037dc57.tar.bz2 ice-04dc6ede447b97084cc6da0be55484045037dc57.tar.xz ice-04dc6ede447b97084cc6da0be55484045037dc57.zip |
updated test suites. Minor refactor to the TrustManager.
Diffstat (limited to 'java/test/Ice/exceptions/Client.java')
-rw-r--r-- | java/test/Ice/exceptions/Client.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/java/test/Ice/exceptions/Client.java b/java/test/Ice/exceptions/Client.java index 7348f1c3499..9cdd639e1ef 100644 --- a/java/test/Ice/exceptions/Client.java +++ b/java/test/Ice/exceptions/Client.java @@ -27,7 +27,11 @@ public class Client try { - communicator = Ice.Util.initialize(args); + Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args); + Ice.Properties properties = Ice.Util.getDefaultProperties(argsH); + properties.setProperty("Ice.Warn.Connections", "0"); + + communicator = Ice.Util.initialize(argsH); status = run(args, communicator); } catch(Ice.LocalException ex) |