throws MalformedURLException, JAXBException
{
if (serviceInterface == null)
throw new NullPointerException(L.l("SOAP API is missing from proxy call."));
ServiceImplInvocationHandler handler =
new ServiceImplInvocationHandler(serviceInterface, url);
return Proxy.newProxyInstance(serviceInterface.getClassLoader(),
new Class[] { serviceInterface },
handler);
}