/** See RequestInfoImpl for javadoc. */
 public int request_id() {
   // access is currently valid for all states:
   // checkAccess( MID_REQUEST_ID );
   /*
    * NOTE: The requestId in client interceptors is the same as the
    * GIOP request id.  This works because both interceptors and
    * request ids are scoped by the ORB on the client side.
    */
   return messageMediator.getRequestId();
 }
 public static String operationNameAndRequestId(CorbaMessageMediator m) {
   return "op/" + m.getOperationName() + " id/" + m.getRequestId();
 }