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