public Object getProxy(Class serviceInterface, String url,
Class[] jaxbClasses)
throws MalformedURLException, JAXBException
{
JAXBRestProxy proxy = new JAXBRestProxy(serviceInterface, url, jaxbClasses);
return Proxy.newProxyInstance(serviceInterface.getClassLoader(),
new Class[] { serviceInterface }, proxy);
}