// File: ServerRequest.idl // CORBA 3.0, Chapter 8 #if ! defined (CORBA_E_COMPACT) && ! defined (CORBA_E_MICRO) interface ServerRequest { // PIDL readonly attribute Identifier operation; void arguments (inout NVList nv); Context ctx(); void set_result (in any val); void set_exception(in any val); }; #endif