#define FORCE_MARSHALLING #define MICO_CONF_POA #include #include "union.h" #ifdef HAVE_ANSI_CPLUSPLUS_HEADERS #include #else // HAVE_ANSI_CPLUSPLUS_HEADERS #include #endif // HAVE_ANSI_CPLUSPLUS_HEADERS using namespace std; class foo_impl : virtual public POA_foo { public: foo_impl() { }; void bar( const U& v1, U_out v2, U2_out v3 ) { if( v1._d() == 3 ) cout << v1.z() << endl; v2 = new U; v2->x( 1234 ); v3.y( 42 ); }; }; int main( int argc, char *argv[] ) { // ORB initialization CORBA::ORB_var orb = CORBA::ORB_init( argc, argv, "mico-local-orb" ); CORBA::Object_var obj = orb->resolve_initial_references("RootPOA"); PortableServer::POA_var poa = PortableServer::POA::_narrow(obj); PortableServer::POAManager_var mgr = poa->the_POAManager(); mgr->activate(); // server side foo_impl* foo = new foo_impl; foo_ptr server = foo->_this(); CORBA::String_var ref = orb->object_to_string( server ); //---------------------------------------------------------------- // client side #ifdef FORCE_MARSHALLING obj = new CORBA::Object( new CORBA::IOR( ref ) ); #else obj = orb->string_to_object( ref ); #endif foo_var client = foo::_narrow( obj ); U v1; U_var v2; U2 v3; v1.z( (const char *) "Hello" ); client->bar( v1, v2, v3 ); if( v2->_d() == 1 ) cout << v2->x() << endl; if( v3._d() == B ) cout << v3.y() << endl; CORBA::release( server ); }