Hi,

Thomas Derive wrote:
> Hi,
> 
> I'm trying to create an object (CORBA::Object_ptr foo_obj = new
> CORBA::Object)

this is completely wrong! What exactly do you try to achieve? If you
need nil reference just use:

CORBA::Object_ptr foo_obj = CORBA::Object::_nil();

if you need initialized object, then you can use for example either
string_to_object() function or _this() on an in-process servant (if this
is your case).

Cheers,
Karel
-- 
Karel Gardas                  [EMAIL PROTECTED]
ObjectSecurity Ltd.           http://www.objectsecurity.com
_______________________________________________
Mico-devel mailing list
Mico-devel@mico.org
http://www.mico.org/mailman/listinfo/mico-devel

Reply via email to