Inheritance diagram for DefaultImageServer::
Public Methods | |
org.omg.CORBA.Object | getInitialObject (String name) throws org.omg.CORBA.ORBPackage.InvalidName |
HxCorba.Constructor | constructor () |
|
Reimplemented from ImageServer.
00019 { 00020 return _orb.resolve_initial_references(name); 00021 } |
|
Reimplemented from ImageServer.
00024 { 00025 if(_constructor == null) { 00026 try { 00027 org.omg.CORBA.Object obj = getInitialObject("Constructor"); 00028 _constructor = HxCorba.ConstructorHelper.narrow(obj); 00029 00030 // get a reference from Constructor, not from config file 00031 // (the reference returned will have an IP address with the 00032 // same format as the ones returned by Constructor) 00033 00034 obj = _constructor.getInitialObject("Constructor"); 00035 _constructor = HxCorba.ConstructorHelper.narrow(obj); 00036 00037 }catch(org.omg.CORBA.ORBPackage.InvalidName e) { 00038 } 00039 } 00040 00041 return _constructor; 00042 } |