jaxwsEndpoint.getBinding().getInInterceptors().add(new LoggingInInterceptor());
jaxwsEndpoint.getBinding().getOutInterceptors().add(new LoggingOutInterceptor());
Client client = new ClientImpl(bus, jaxwsEndpoint);
InvocationHandler ih = new JaxWsClientProxy(client, jaxwsEndpoint.getJaxwsBinding());
Object obj = Proxy
.newProxyInstance(serviceEndpointInterface.getClassLoader(),
new Class[] {serviceEndpointInterface, BindingProvider.class}, ih);
updateAddressPort(obj, PORT);
return serviceEndpointInterface.cast(obj);