@Override
protected Client createClient() throws CreateException, Exception
{
ClientProxyFactoryBean cpf = new ClientProxyFactoryBean();
cpf.setServiceClass(ProxyService.class);
cpf.setDataBinding(new StaxDataBinding());
cpf.getFeatures().add(new StaxDataBindingFeature());
cpf.setAddress(getAddress());
cpf.setBus(getBus());
cpf.setProperties(properties);