// do the actual invocation
_req.doInvocation();
// for the asynchronous case, note that the response has been
// received.
synchronized (_req)
{
// update local boolean indicator
_req.gotResponse = true;
// notify any client waiting on a 'get_response'
_req.notify();
}
if (_notifyORB == true) {
_orb.notifyORB() ;
}