Object returnedInstance = invokeMethod(pojoRequest, method);
/*
* wrap response within a response object
*/
GwtRpcCommLayerPojoResponse pojoResp = new GwtRpcCommLayerPojoResponse();
pojoResp.setResponseInstance( (Serializable) returnedInstance);
/*
* send back the result as a stream set of bytes
*/
serializeResponse(req,resp,pojoRequest,pojoResp);