if (isObjectMethodLocal() && pMethod.getDeclaringClass().equals(Object.class)) {
return pMethod.invoke(pProxy, pArgs);
}
final String methodName;
RpcMethod annotation = pMethod.getAnnotation(RpcMethod.class);
if(annotation!=null)
{
methodName = annotation.methodName();
}else if (pRemoteName == null || pRemoteName.length() == 0) {
methodName = pMethod.getName();
} else {
methodName = pRemoteName + "." + pMethod.getName();
}