Get Namespace URI bound to a prefix in the current scope
if (prefix==null) {
throw new IllegalArgumentException("prefix is null");
}
if (XMLConstants.DEFAULT_NS_PREFIX.equals(prefix)) {
return "http://schemas.xmlsoap.org/wsdl/";
}
if (XMLConstants.XML_NS_PREFIX.equals(prefix)) {
return XMLConstants.XML_NS_URI;
}
if (XMLConstants.XMLNS_ATTRIBUTE.equals(prefix)) {
return XMLConstants.XMLNS_ATTRIBUTE_NS_URI;
}
if ("soap".equals(prefix)) {
return "http://schemas.xmlsoap.org/wsdl/soap/";
}
if ("soap12".equals(prefix)) {
return "http://schemas.xmlsoap.org/wsdl/soap12/";
}
return XMLConstants.NULL_NS_URI;