Bug 1279

Summary: CORBA 3.0 - CCM adds several methods to CORBA interfaces
Product: TAO Reporter: Ossama Othman <ossama.othman>
Component: CIAOAssignee: Nanbor Wang <nanbor>
Status: RESOLVED FIXED    
Severity: enhancement CC: parsons
Priority: P3    
Version: 1.2.3   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 1278    

Description Ossama Othman 2002-08-10 22:35:48 CDT
CCM adds the following to the CORBA::ORB interface:

TypeCode create_component_tc ( in RepositoryId id, in Identifier name );

TypeCode create_home_tc ( in RepositoryId id, in Identifier name );

TypeCode create_event_tc ( in RepositoryId id, in Identifier name,
                           in ValueModifier type_modifier,
                           in TypeCode concrete_base,
                           in ValueMemberSeq members );

---------------
CCM adds the following to the CORBA::Object and CORBA::LocalObject interfaces:

   Object get_component ();

CORBA::LocalObject::get_component() is required to throw CORBA::NO_IMPLEMENT.

---------------
CCM adds the following TCKinds:

    tk_component, tk_home, tk_event

in addition to the following TypeCode constants:

   TC_Component = tk_component {CCMObject}
   TC_Home = tk_home {CCMHome}
   TC_EventBase = tk_event {EventBase}
Comment 1 Ossama Othman 2002-08-10 22:37:38 CDT
This is required for CORBA 3.0 compliance in the TAO 1.3 release.
Comment 2 Nanbor Wang 2002-08-10 23:22:39 CDT
I implemented get_component() a while back.  But I either missed the special 
case in LocalObject, or it wasn't mentioned in the draft spec.  Anyway, it's 
trivial to add it (throwing NO_IMPLEMENT ;-) and I'll add it after 1.2.4.

I'll need Jeff's help with those typecode functions, however..
Comment 3 Ossama Othman 2004-08-17 01:11:28 CDT
The methods and TypeCodes in question were added some time back.