[omniORB] update from 2.7.1 to 2.8.0pre2 and tie_

HA Quoc Viet qvha@axlog.fr
Thu, 09 Sep 1999 17:11:29 +0200


hi

I've updated my omniorb 2.7.1 to 2.8.0pre2 (linux 2.2.10, i386,
egcs-2.91.66)
I have carefully read ReleaseNote_omniORB_280.txt, but couldn't find out
what's killing my "server"

the same code compiles fine with both.
it runs fine on 2.7.1

however, my server crashes when it's sending
tie_obj->_obj_is_ready(boa);

I am heavily using the tie_ feature, could it be that ?

since _narrow is now deprecated, I have tried _downcast instead, but
then
the compiler complains "there is no _downcast member in your class,
dummy !"

the typical piece of code that kills my server is 

Variable_i                  *InstanceLocale; 
_tie_Variable<Variable_i,1> *InstanceIDL;    

InstanceLocale	= new Variable_i;
InstanceIDL	= new _tie_Variable<Variable_i,1>(InstanceLocale);
InstanceIDL->_obj_is_ready(boa);       // server dies


Any suggestion welcome ... :o)


Viet