summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/On_Demand_Loading/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/On_Demand_Loading/server.cpp')
-rw-r--r--TAO/examples/POA/On_Demand_Loading/server.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/examples/POA/On_Demand_Loading/server.cpp b/TAO/examples/POA/On_Demand_Loading/server.cpp
index f07b26ba52c..04ff3faf909 100644
--- a/TAO/examples/POA/On_Demand_Loading/server.cpp
+++ b/TAO/examples/POA/On_Demand_Loading/server.cpp
@@ -17,26 +17,26 @@
ACE_RCSID(On_Demand_Loading, server, "$Id$")
-int
+int
main (int argc, char **argv)
{
Server_i server;
-
+
if (server.init (argc, argv) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Failure during Initialisation: init ()\n"),
-1);
-
+
// This POA is used to test the Servant Activator interface and
// hence has an RETAIN policy.
- PortableServer::POA_var first_poa =
+ PortableServer::POA_var first_poa =
server.create_poa ("firstPOA", 1);
if (first_poa.in () == 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Failure during first POA creation: create_poa ()\n"),
-1);
-
+
// This poa is used to test the Servant Activator interface and
// hence has an NONRETAIN policy.
PortableServer::POA_var second_poa =
@@ -46,23 +46,23 @@ main (int argc, char **argv)
ACE_ERROR_RETURN ((LM_ERROR,
"Failure during second POA creation: create_poa ()\n"),
-1);
-
+
// The Servant Activator interface is created and initialised.
if (server.create_activator (first_poa) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Failure during first Servant Activator creation: create_activator()\n"),
-1);
-
+
// The Servant Locator interface is created and initialised.
if (server.create_locator (second_poa) !=0)
ACE_ERROR_RETURN ((LM_ERROR,
"Failure during first Servant Locator creation: create_activator()\n"),
- -1);
+ -1);
// The server begins processing requests.
if (server.run () != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Failure during request processing: run ()\n"),
- -1);
+ -1);
return 0;
}