diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-10-26 06:52:12 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-10-26 06:52:12 +0000 |
commit | 4bce0d66a7fbe259a7cce305bfd9eeafe1812d55 (patch) | |
tree | 2a34dde5f7a960b8dbe7bad0ec0b159a08327bec /java/demo/IceBox/hello/Client.java | |
parent | Added C# implementation of IceBox. (diff) | |
download | ice-4bce0d66a7fbe259a7cce305bfd9eeafe1812d55.tar.bz2 ice-4bce0d66a7fbe259a7cce305bfd9eeafe1812d55.tar.xz ice-4bce0d66a7fbe259a7cce305bfd9eeafe1812d55.zip |
- Added handling of IceBox.InstanceName to the IceBox service manager.
- Use Hello.Proxy, not Hello.Hello in the IceBox demo.
- Remove shutdown() from IceBox hello demo.
Diffstat (limited to 'java/demo/IceBox/hello/Client.java')
-rw-r--r-- | java/demo/IceBox/hello/Client.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/demo/IceBox/hello/Client.java b/java/demo/IceBox/hello/Client.java index c89be59d095..7a21ca205d5 100644 --- a/java/demo/IceBox/hello/Client.java +++ b/java/demo/IceBox/hello/Client.java @@ -31,7 +31,7 @@ public class Client extends Ice.Application run(String[] args) { Ice.Properties properties = communicator().getProperties(); - final String refProperty = "Hello.Hello"; + final String refProperty = "Hello.Proxy"; String ref = properties.getProperty(refProperty); if(ref.length() == 0) { |