summaryrefslogtreecommitdiff
path: root/py/demo/IceGrid/simple/Server.py
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2015-03-18 12:58:16 -0230
committerMatthew Newhook <matthew@zeroc.com>2015-03-18 12:58:16 -0230
commit9b7668c7c92cf9cb311fe444cdddb489cd2a219d (patch)
tree5016567c58c81f5654e9d01935e199c6bf4761d2 /py/demo/IceGrid/simple/Server.py
parentVS add-in & build updates: (diff)
downloadice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.bz2
ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.xz
ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.zip
Removed demos.
Moved demoscript to distribution.
Diffstat (limited to 'py/demo/IceGrid/simple/Server.py')
-rwxr-xr-xpy/demo/IceGrid/simple/Server.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/py/demo/IceGrid/simple/Server.py b/py/demo/IceGrid/simple/Server.py
deleted file mode 100755
index 99f1bf9be7d..00000000000
--- a/py/demo/IceGrid/simple/Server.py
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/env python
-# **********************************************************************
-#
-# Copyright (c) 2003-2015 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.
-#
-# **********************************************************************
-
-import sys, traceback, Ice
-
-Ice.loadSlice('Hello.ice')
-import Demo
-
-class HelloI(Demo.Hello):
- def __init__(self, name):
- self.name = name
-
- def sayHello(self, current=None):
- print(self.name + " says Hello World!")
-
- def shutdown(self, current=None):
- print(self.name + " shutting down...")
- current.adapter.getCommunicator().shutdown()
-
-class Server(Ice.Application):
- def run(self, args):
- if len(args) > 1:
- print(self.appName() + ": too many arguments")
- return 1
-
- properties = self.communicator().getProperties()
- adapter = self.communicator().createObjectAdapter("Hello")
- id = self.communicator().stringToIdentity(properties.getProperty("Identity"))
- adapter.add(HelloI(properties.getProperty("Ice.ProgramName")), id)
- adapter.activate()
- self.communicator().waitForShutdown()
- return 0
-
-app = Server()
-sys.exit(app.main(sys.argv))