summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/nested/Server.cs
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-05-12 17:07:55 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-05-12 17:07:55 +0000
commit930d0aa96e4bb7cb740b2d51f64e4c439323a322 (patch)
tree16028bb6257fbfa31f7b0540575b54412b67f0a9 /cs/demo/Ice/nested/Server.cs
parentAnother stringToIdentity change (diff)
downloadice-930d0aa96e4bb7cb740b2d51f64e4c439323a322.tar.bz2
ice-930d0aa96e4bb7cb740b2d51f64e4c439323a322.tar.xz
ice-930d0aa96e4bb7cb740b2d51f64e4c439323a322.zip
Use communicator identityToString
Diffstat (limited to 'cs/demo/Ice/nested/Server.cs')
-rwxr-xr-xcs/demo/Ice/nested/Server.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cs/demo/Ice/nested/Server.cs b/cs/demo/Ice/nested/Server.cs
index 098147d21be..b96647b5199 100755
--- a/cs/demo/Ice/nested/Server.cs
+++ b/cs/demo/Ice/nested/Server.cs
@@ -14,8 +14,8 @@ public class Server : Ice.Application
public override int run(string[] args)
{
Ice.ObjectAdapter adapter = communicator().createObjectAdapter("Nested.Server");
- NestedPrx self = NestedPrxHelper.uncheckedCast(adapter.createProxy(Ice.Util.stringToIdentity("nestedServer")));
- adapter.add(new NestedI(self), Ice.Util.stringToIdentity("nestedServer"));
+ NestedPrx self = NestedPrxHelper.uncheckedCast(adapter.createProxy(communicator().stringToIdentity("nestedServer")));
+ adapter.add(new NestedI(self), communicator().stringToIdentity("nestedServer"));
adapter.activate();
communicator().waitForShutdown();
return 0;