final String serviceName, final String methodName,
final Map<String, String> parameters) throws
ServiceNotFoundException, ServiceMethodNotFoundException,
IllegalAccessException,
IllegalArgumentException, InvocationTargetException {
final RESTfulService service = RESTfulRepository.getInstance().getService(
endpoint, serviceName);
if (null != service) {
return this.call(context, service, methodName, parameters);
} else {
throw new ServiceNotFoundException(serviceName);