Please report new issues athttps://github.com/DOCGroup
I haven't checked all code locations, but it looks as if the ORB's string_to_object() operation returns CORBA::Object::_nil() in most failure scenarios, e.g., in CORBANAME_Parser.cpp and CORBALOC_Parser.cpp. I expect string_to_object() to fail with a BAD_PARAM exception in case of failure. See, e.g., section 13.6.10.
Added blocks and accept for tao-users
to Kees
to pool
Accept, this bug is valid, TAO doesn't comply to the corba spec. Made a reproducer test program, we do need to add test strings with their expected minor code. Frank, do you have invalid strings with the minor code you do expect then?
Mon May 19 14:29:21 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl> * tests/Bug_2085_Regression/*: New regression test for the fact that string_to_object doesn't return an exception. Thanks to Frank Pilhofer <fpilhofe at mc dot com> for reporting this.
Sorry, I don't have any specific test cases. When I ran across this, I just noticed that string_to_object() returned nil, and that its errors were not caught by my exception handling code. So a very simple test case would be along the lines of try { obj = orb->string_to_object ("bazong"); test_failed(); } catch (const CORBA::BAD_PARAM &) { test_passed(); } catch (...) { test_failed(); }
I have a test like this, but it needs to be more specific, which minor code do you expect (7, 8, 9 or 10) with which strings