summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-08 08:16:50 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-08 08:16:50 +0000
commit7cdc38e0752db1dce07dbd287acc1b8ead2e07a7 (patch)
tree7ba6b8e60bae61815a6bb99c6950f2771cab580d
parent1408e7a177eab0c4b886deb22cbb0e3b8a95aaaa (diff)
downloadATCD-7cdc38e0752db1dce07dbd287acc1b8ead2e07a7.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-98c24
-rw-r--r--TAO/examples/POA/On_Demand_Loading/Dir_Service_i.cpp6
2 files changed, 27 insertions, 3 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 42d8e99fbd4..60908ed86e0 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,27 @@
+Tue Dec 8 02:09:47 1998 Kirthika Parameswaran <kirthika@cs.wustl.edu>
+
+ * examples/POA/On_Demand_Loading/server.cpp (main): Changed the
+ ObjectID format.
+
+ * examples/POA/On_Demand_Loading/client.cpp (main): Added the
+ end_note() request call on the object.
+
+ * examples/POA/On_Demand_Loading/Servant_Activator.h: Changed the
+ dll object pointer from a pointer object to simply an
+ instantiation of ACE_DLL.
+
+ * examples/POA/On_Demand_Loading/Servant_Activator.cpp (incarnate):
+ Added an dll object open() call explicitly which was done
+ implicitly before along with the dll object creation.
+
+ * examples/POA/On_Demand_Loading/Servant_Activator.cpp (parse_string):
+ Updated the ObjectID format to dllname:factory_method.
+
+ * examples/POA/On_Demand_Loading/Dir_Service_i.cpp: Added some ACE_DEBUG
+ statements to make the output clearer.
+
+ * examples/POA/On_Demand_Loading/README: Added it to the repository.
+
Tue Dec 8 00:49:23 1998 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/CDR.i: Applied more exception handling macros.
diff --git a/TAO/examples/POA/On_Demand_Loading/Dir_Service_i.cpp b/TAO/examples/POA/On_Demand_Loading/Dir_Service_i.cpp
index 9a9c5d157b7..16aeae65c70 100644
--- a/TAO/examples/POA/On_Demand_Loading/Dir_Service_i.cpp
+++ b/TAO/examples/POA/On_Demand_Loading/Dir_Service_i.cpp
@@ -76,9 +76,9 @@ Dir_Service_i::area_codes_info (CORBA::Environment &env)
ACE_UNUSED_ARG (env);
ACE_DEBUG ((LM_DEBUG,
"Some area_codes:\n"
- " Indianapolis 812\n"
- "St.Louis 314\n"
- "Sunnyvale 408\n"));
+ "Indianapolis 812\n"
+ "St.Louis 314\n"
+ "Sunnyvale 408\n"));
}