// We have to return an empty map like the old code, even when there is nothing
Map<String, String> result = new LinkedHashMap<String, String>();
WebservicesMetaData webservices = getDelegate().getWebservices();
if (webservices == null)
return result;
WebserviceDescriptionsMetaData descriptions = webservices.getWebserviceDescriptions();
if (descriptions == null)
return result;
// The old code didn't check for null wsdl location, so neither does this
for (WebserviceDescriptionMetaData description : descriptions)