summaryrefslogtreecommitdiff
path: root/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/docs/tutorials/Quoter/Simple/Server/server.cpp')
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Server/server.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp b/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp
new file mode 100644
index 00000000000..150b59789bc
--- /dev/null
+++ b/TAO/docs/tutorials/Quoter/Simple/Server/server.cpp
@@ -0,0 +1,45 @@
+//
+// $Id$
+//
+
+#include "Stock_Factory_i.h"
+#include "ace/streams.h"
+
+int main (int argc, char* argv[])
+{
+ try {
+ // First initialize the ORB, that will remove some arguments...
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (argc, argv,
+ "" /* the ORB name, it can be anything! */);
+ CORBA::Object_var poa_object =
+ orb->resolve_initial_references ("RootPOA");
+ PortableServer::POA_var poa =
+ PortableServer::POA::_narrow (poa_object.in ());
+ PortableServer::POAManager_var poa_manager =
+ poa->the_POAManager ();
+ poa_manager->activate ();
+
+ // Create the servant
+ Quoter_Stock_Factory_i stock_factory_i;
+
+ // Activate it to obtain the object reference
+ Quoter::Stock_Factory_var stock_factory =
+ stock_factory_i._this ();
+
+ // Put the object reference as an IOR string
+ CORBA::String_var ior = orb->object_to_string (stock_factory.in ());
+ // Print it out!
+ cout << ior.in () << endl;
+
+ orb->run ();
+
+ // Destroy the POA, waiting until the destruction terminates
+ poa->destroy (1, 1);
+ orb->destroy ();
+ }
+ catch (CORBA::Exception &) {
+ cerr << "CORBA exception raised!" << endl;
+ }
+ return 0;
+}