summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/facets/Server.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-18 20:28:38 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-18 20:28:38 +0000
commitab9a6eac4a0f801ae9c3ef1becce488c73f051cd (patch)
tree14c847cd917683276e940b3c4b53f024f81abae3 /cpp/test/Ice/facets/Server.cpp
parentfile SslConfig.h was initially added on branch asn_security_1. (diff)
downloadice-ab9a6eac4a0f801ae9c3ef1becce488c73f051cd.tar.bz2
ice-ab9a6eac4a0f801ae9c3ef1becce488c73f051cd.tar.xz
ice-ab9a6eac4a0f801ae9c3ef1becce488c73f051cd.zip
more facet stuff
Diffstat (limited to 'cpp/test/Ice/facets/Server.cpp')
-rw-r--r--cpp/test/Ice/facets/Server.cpp65
1 files changed, 65 insertions, 0 deletions
diff --git a/cpp/test/Ice/facets/Server.cpp b/cpp/test/Ice/facets/Server.cpp
new file mode 100644
index 00000000000..dc6579078c2
--- /dev/null
+++ b/cpp/test/Ice/facets/Server.cpp
@@ -0,0 +1,65 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#include <Ice/Ice.h>
+#include <TestI.h>
+
+using namespace std;
+
+int
+run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
+{
+ string endpts("tcp -p 12345 -t 2000");
+ Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapterWithEndpoints("TestAdapter", endpts);
+ Ice::ObjectPtr d = new DI;
+ adapter->add(d, "d");
+ d->_addFacet(d, "facetABCD");
+ d->_addFacet(new FI, "facetEF");
+ d->_addFacet(new GI(communicator), "facetG");
+
+ adapter->activate();
+ communicator->waitForShutdown();
+
+ d->_removeAllFacets(); // Break cyclic dependencies
+ return EXIT_SUCCESS;
+}
+
+int
+main(int argc, char* argv[])
+{
+ int status;
+ Ice::CommunicatorPtr communicator;
+
+ try
+ {
+ communicator = Ice::initialize(argc, argv);
+ status = run(argc, argv, communicator);
+ }
+ catch(const Ice::Exception& ex)
+ {
+ cerr << ex << endl;
+ status = EXIT_FAILURE;
+ }
+
+ if (communicator)
+ {
+ try
+ {
+ communicator->destroy();
+ }
+ catch(const Ice::Exception& ex)
+ {
+ cerr << ex << endl;
+ status = EXIT_FAILURE;
+ }
+ }
+
+ return status;
+}