binding == null ? null : binding.getQName().getLocalPart();
String namespace =
binding == null ? null : binding.getQName().getNamespaceURI();
// Get WSDL binding from the overviewURL and set in analyzerContext
WSDLElement wsdlElement = new WSDLElementImpl();
wsdlElement.setName(bindingName);
wsdlElement.setNamespace(namespace);
wsdlElement.setType(WSDLValidator.TYPE_DESCRIPTION_BINDING);
analyzerContext.getServiceReference().setWSDLElement(wsdlElement);
}
return wsdlDoc;
} catch (Exception e) {