summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2007-03-15 11:57:42 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2007-03-15 11:57:42 +0000
commit355374d93045e18919f1ea6b59a4b4e892cd02aa (patch)
tree1da9fd98cd7619c08971bc83b9c7254931253008
parent58002eba7ec230db38f971f2c4f07927c3acebe3 (diff)
downloadATCD-355374d93045e18919f1ea6b59a4b4e892cd02aa.tar.gz
ChangeLogTag: Thu Mar 15 12:55:54 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/CORBA_e_Implicit_Activation/server.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 6a96d6b4f4e..27bfce6f9ee 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Thu Mar 15 12:55:54 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/CORBA_e_Implicit_Activation/server.cpp:
+
+ TAO should throw a CORBA::INV_POLICY when implicit activation is
+ used. Thanks to Johnny Willemsen for pointing this out.
+
Thu Mar 15 08:05:57 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/CORBA_e_Implicit_Activation/server.cpp:
diff --git a/TAO/tests/CORBA_e_Implicit_Activation/server.cpp b/TAO/tests/CORBA_e_Implicit_Activation/server.cpp
index 215bab98bb1..524ff30f63f 100644
--- a/TAO/tests/CORBA_e_Implicit_Activation/server.cpp
+++ b/TAO/tests/CORBA_e_Implicit_Activation/server.cpp
@@ -41,7 +41,7 @@ main (int argc, char *argv[])
root_poa->destroy (1, 1);
orb->destroy ();
}
- catch (const PortableServer::POA::ServantNotActive&)
+ catch (const CORBA::INV_POLICY&)
{
ACE_DEBUG ((LM_DEBUG, "This test passes.\n"));
status = 0;