description = readInTheWSDLFile(fullPath);
} catch (AxisFault axisFault) {
throw new WSDLException("ERROR", "Exception occured while reading WSDL 2.0 doc", axisFault);
}
DescriptionElement descriptionElement = description.toElement();
savedTargetNamespace = descriptionElement.getTargetNamespace()
.toString();
namespacemap = descriptionElement.getDeclaredNamespaces();
this.description = description;
this.serviceName = null;
if (name != null) {
serviceName = new QName(descriptionElement.getTargetNamespace().toString(), name);
}
this.interfaceName = interfaceName;
this.axisService = new AxisService();
setPolicyRegistryFromService(axisService);
}