Re: [orbitcpp-list] Question
Status: Beta
Brought to you by:
philipd
|
From: Artem Gr <ar...@bi...> - 2001-09-07 17:22:24
|
AT> PortableServer::POA_var myrdvPOA = rootPOA->create_POA("myrdv_poa",poa_manager,policies);
Is PolicyList implemented already in orbitcpp? 8 )
AT> The exception i get is, i think, a CORBA::exception
AT> Have anybody got an idea ?
Catch it and print it with
try{
...
}catch( CORBA::Exception &e ){
e._print( cout );
}
if i'm not mistaken.
|