XMLCatalogImpl xmlCatalog = (XMLCatalogImpl)org.eclipse.wst.wsdl.validation.internal.xml.XMLCatalog.getExtensionCatalogInstance();
xmlCatalog.addXMLCatalog(globalXMLCatalog);
WSDLValidator wsdlValidator = new WSDLValidator();
WSDLValidationConfiguration configuration = new WSDLValidationConfiguration();
// Set the properties.
Iterator propertyIter = properties.iterator();
while(propertyIter.hasNext())
{
Property property = (Property)propertyIter.next();
configuration.setProperty(property.getName(), property.getValue());
}
// Set the extension URIResolvers.
Iterator resolversIter = extURIResolvers.iterator();
while(resolversIter.hasNext())