Bug 1917 - Mismatch with Corba spec 3.0.4
Summary: Mismatch with Corba spec 3.0.4
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.4.2
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks: 2181 845 1278
  Show dependency tree
 
Reported: 2004-09-01 07:40 CDT by Johnny Willemsen
Modified: 2005-10-25 02:22 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2004-09-01 07:40:04 CDT
In TAO we have:

    Object create_reference_with_id (in ObjectId oid,
                                     in CORBA::RepositoryId intf)
      raises (WrongPolicy);

The corba spec doesn't define the raises clause.

Also in the Current local interface the spec defines the following methods not 
in TAO.

Object get_reference() raises(NoContext);
Servant get_servant() raises(NoContext);
Comment 1 Johnny Willemsen 2004-09-20 04:48:14 CDT
Another mismatch is the ExceptionHolder, which is part of the Messaging module. 
According to the spec it should be:

// IDL
module Messaging {
// ... all the other stuff
native UserExceptionBase;
valuetype ExceptionHolder {
  void raise_exception() raises (UserExceptionBase);
  void raise_exception_with_list(
    in CORBA::ExceptionList exc_list) raises (UserExceptionBase);
  private boolean is_system_exception;
  private boolean byte_order;
  private sequence<octet> marshaled_exception;
};
Comment 2 Johnny Willemsen 2004-10-13 13:26:20 CDT
Accept for tao-support
Comment 3 Johnny Willemsen 2004-10-26 09:10:11 CDT
The set_servant_manager behaviour is also not according to the spec, TAO allows 
to change the servant manager after set, this is not allowed according the 
spec. Also the exception thrown when a nil or invalid object reference is set 
is not correct.
Comment 4 Johnny Willemsen 2004-11-11 09:36:17 CST
The method get_servant in Current will be added as part of my POArefactoring 
work.
Comment 5 Johnny Willemsen 2005-01-10 05:18:44 CST
The change for create_reference_with_id is done in the POArefactor2 branch.
Comment 6 Johnny Willemsen 2005-02-21 01:37:33 CST
The create_reference_with_id and get_servant are now both in the main cvs repo.
Comment 7 Johnny Willemsen 2005-05-13 11:08:18 CDT
It seems that the exception holder interface has an impact on AMI. I found in 
OMG issue 2929 also the following. There doesn't seem to be a need for a 
special exception holder. This will change the way the reply handlers is 
generated by the users. See 22.11 of the corba spec.

4. On page 62, the section 6.5.2:

   changes:

      void <operName>_excep(
           in AMI_<ifaceName>ExceptionHolder excep_holder);

      ....

      void get_<attrName>_excep(
           in AMI_<ifaceName>ExceptionHolder excep_holder);

      ....

      void set_<attrName>_excep(
           in AMI_<ifaceName>ExceptionHolder excep_holder);
 
   to:

      void <operName>_excep(
           in Messaging::ExceptionHolder excep_holder);

      ....

      void get_<attrName>_excep(
           in Messaging::ExceptionHolder excep_holder);

      ....

      void set_<attrName>_excep(
           in Messaging::ExceptionHolder excep_holder);

Comment 8 Johnny Willemsen 2005-05-14 06:22:56 CDT
Some input from Jeff on the ExceptionHolder. It seems that fixing this will have
more impact that initially expected.

Johnny is right, getting this up to date will involve changes to the
Messaging library, IDL compiler, and about half a dozen tests and
examples. Perhaps the biggest headache will be the breakage of stuff for
any of our users who employ AMI (I have no clue how many that might be).
If there would not be too much screaming in this last category. maybe
it's something we should think about for 1.5.

It will reduce the size of AMI-related generated code slightly ;-).
Comment 9 Johnny Willemsen 2005-10-20 08:46:50 CDT
the ExceptionHolder update is ready and in cvs. End users can get the old
mapping if they define TAO_HAS_DEPRECATED_EXCEPTION_HOLDER in their config.h
file before building TAO and the IDL compiler. 
Comment 10 Johnny Willemsen 2005-10-21 08:30:28 CDT
The 
Object get_reference() raises(NoContext)
is as operation in cvs, only implementation will be added soon, last item from
this bugzilla entry
Comment 11 Johnny Willemsen 2005-10-25 02:22:51 CDT
the get_reference is now also in CVS and this bug is now fully fixed.