Naming Service help
Status: Beta
Brought to you by:
kris_johnson
i have existing TAO CORBA server/client applications in
C++ and want to port the server to C# using
Remoting.Corba. The server binds it's CORBA object
with the Nameing Service with 2 name component ids.
for example
CosNaming::Name_var context = new
CosNaming::Name(0);
context->length(2);
context[0].id = "root";
context[0].kind = "";
context[1].id = "interface1";
context[1].kind = "";
when i attempt to create 2 NameComponents using
Remoting.Corba i get an exception when binding.
NameComponent[] name = new NameComponent[2];
name[0] = new NameComponent("root", "");
name[1] = new NameComponent("interface1", "");
nameService.rebind(name, Ior.Parse(ior));
any help?
great project, BTW :D
brandon
Logged In: YES
user_id=1276752
forgot to log in, i do have a source forge account :)