I am attempting to resolve two references to different CORBA C++ servants using the following code:<br><br>    def resolveCameraImplRef(self):<br>        name = [CosNaming.NameComponent(BRAIN_NAME,&quot;&quot;),<br>                CosNaming.NameComponent(CAMERA_NAME,&quot;&quot;)]<br>
        try:<br>          cameraObj = self.manager.rootContextExt.resolve(name)<br>        except:<br>          printDebug( &quot;Problem resolving Camera object name in initCorbaOrb().cameraClientInit()&quot; )<br>          sys.exit(1)<br>
<br>        client = cameraObj._narrow(gri._objref_Camera)<br>        if client is None:<br>          printDebug( &quot;Problem narrowing cameraObj to a GRI::Camera in initCorbaOrb().cameraClientInit()&quot; )<br>          sys.exit(1)<br>
        else:<br>          return client<br><br>    def resolvePanoramaImplRef(self):<br>        name = [CosNaming.NameComponent(BRAIN_NAME,&quot;&quot;),<br>                CosNaming.NameComponent(&quot;Panorama&quot;,&quot;&quot;)]<br>
        try:<br>          panoramaObj = self.manager.rootContextExt.resolve(name)<br>        except:<br>          printDebug( &quot;Problem resolving Panorama object name in initCorbaOrb().panoramaClientInit()&quot; )<br>
          sys.exit(1)<br><br>        panoramaClient = panoramaObj._narrow(gri._objref_Panorama)<br>        if client is None:<br>          printDebug( &quot;Problem narrowing panoramaObj to a GRI::Panorama in initCorbaOrb().panoramaClientInit()&quot; )<br>
          sys.exit(1)<br>        else:<br>          return client<br><br>Before I added the clientImplRef code I was able to make calls to the C++ servant handling the panorama object. Now I can successfully resolve references to the camera object but when the panorama is being reolved I receive this:<br>
<br>Problem resolving Panorama object name in initCorbaOrb().panoramaClientInit()<br>Exception exceptions.AttributeError: &quot;_objref_Panorama instance has no attribute &#39;_Object__release&#39;&quot; in &lt;bound method _objref_Panorama.__del__ of &lt;gri._objref_Panorama instance at 0xb79e3c6c&gt;&gt; ignored<br>
<br>If I need to provide more code please let me know. I don&#39;t know how to decipher the error I&#39;m receiving. <br><br>Cheers,<br><br>Kyle Dunn<br>