#define FORCE_MARSHALLING #define MICO_CONF_POA #include #include "a.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_A::foo { public: foo_impl() { }; void bar( const A::BSSeq& s ) { for( CORBA::ULong i = 0; i < s.length(); i++ ) cout << i << ": " << s[ i ].x << endl; }; }; 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; A::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 A::foo_var client = A::foo::_narrow( obj ); A::BSSeq s; s.length( 3 ); s[ 0 ].x = 33; s[ 1 ].x = 22; s[ 2 ].x = 11; client->bar( s ); CORBA::release( server ); }