summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;