// Read a qname in the form:
// namespace#wsdl.interface(name)
int index = uri.indexOf('#');
if (index == -1) {
throw new ContributionReadException("Invalid WSDL interface attribute: " + uri);
}
String namespace = uri.substring(0, index);
String name = uri.substring(index + 1);
name = name.substring("wsdl.interface(".length(), name.length() - 1);
wsdlInterface.setName(new QName(namespace, name));