summaryrefslogtreecommitdiff
path: root/cs/demo/Ice/nested/NestedServer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/demo/Ice/nested/NestedServer.cs')
-rwxr-xr-xcs/demo/Ice/nested/NestedServer.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/cs/demo/Ice/nested/NestedServer.cs b/cs/demo/Ice/nested/NestedServer.cs
deleted file mode 100755
index 03f0ba85a13..00000000000
--- a/cs/demo/Ice/nested/NestedServer.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-using Demo;
-
-class NestedServer : 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"));
- adapter.activate();
- communicator().waitForShutdown();
- return 0;
- }
-}