diff options
Diffstat (limited to 'cpp/demo/Ice/value/Server.cpp')
-rw-r--r-- | cpp/demo/Ice/value/Server.cpp | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/cpp/demo/Ice/value/Server.cpp b/cpp/demo/Ice/value/Server.cpp new file mode 100644 index 00000000000..62a21ce9186 --- /dev/null +++ b/cpp/demo/Ice/value/Server.cpp @@ -0,0 +1,59 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <ValueI.h> + +using namespace std; + +int +run(int argc, char* argv[], Ice::CommunicatorPtr communicator) +{ + Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("ValueAdapter"); + Ice::ObjectPtr object = new InitialI(adapter); + adapter->add(object, "initial"); + adapter->activate(); + communicator->waitForShutdown(); + return EXIT_SUCCESS; +} + +int +main(int argc, char* argv[]) +{ + int status; + Ice::CommunicatorPtr communicator; + + try + { + Ice::PropertiesPtr properties = Ice::loadProperties("config"); + communicator = Ice::initializeWithProperties(argc, argv, properties); + status = run(argc, argv, communicator); + } + catch(const Ice::LocalException& ex) + { + cerr << ex << endl; + status = EXIT_FAILURE; + } + + if (communicator) + { + try + { + communicator->destroy(); + } + catch(const Ice::LocalException& ex) + { + cerr << ex << endl; + status = EXIT_FAILURE; + } + } + + return status; +} |