}
}
private Client createClientFromFactoryBean()
{
JaxWsClientFactoryBean cpf = new JaxWsClientFactoryBean();
cpf.setServiceClass(serviceClass);
if (databinding == null)
{
cpf.setDataBinding(databinding);
}
cpf.setAddress(getAddress());
cpf.setBus(getBus());
cpf.setProperties(properties);
if (wsdlLocation != null)
{
cpf.setWsdlURL(wsdlLocation);
}
return cpf.create();
}