Iterator elements = endpoint.getExtensibilityElements().iterator();
while (elements.hasNext()) {
Object obj = elements.next();
if (obj instanceof SOAPAddress) {
SOAPAddress soapAddress = (SOAPAddress) obj;
clientOptions.setTo(new EndpointReference(soapAddress.getLocationURI()));
}
}
WSDLBinding binding = endpoint.getBinding();