Bug 1279 - CORBA 3.0 - CCM adds several methods to CORBA interfaces
Summary: CORBA 3.0 - CCM adds several methods to CORBA interfaces
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: CIAO (show other bugs)
Version: 1.2.3
Hardware: All All
: P3 enhancement
Assignee: Nanbor Wang
URL:
Depends on:
Blocks: 1278
  Show dependency tree
 
Reported: 2002-08-10 22:35 CDT by Ossama Othman
Modified: 2004-08-17 01:11 CDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.