// // Copyright (c) ZeroC, Inc. All rights reserved. // #include #include #include using namespace std; class Server : public Test::TestHelper { public: void run(int, char**); }; void Server::run(int argc, char** argv) { Ice::CommunicatorHolder communicator = initialize(argc, argv); Ice::ObjectAdapterPtr adpt = communicator->createObjectAdapter("ReplicatedAdapter"); Ice::PropertiesPtr properties = communicator->getProperties(); Ice::ObjectPtr object = new TestI(properties); adpt->add(object, Ice::stringToIdentity(properties->getProperty("Ice.ProgramName"))); adpt->add(object, Ice::stringToIdentity(properties->getProperty("Identity"))); try { adpt->activate(); communicator->getAdmin(); } catch(const Ice::ObjectAdapterDeactivatedException&) { } catch(const Ice::CommunicatorDestroyedException&) { // // getAdmin might raise this if communicator is shutdown by // servant. // } communicator->waitForShutdown(); } DEFINE_TEST(Server)