// simulate the standard compiler "-D" option ...
fCatalogPropValue = System.setProperty(fCatalogProperty, catalogURL.toString());
WSDLFactory factory = WSDLFactory.newInstance();
WSDLReader reader = factory.newWSDLReader();
ErrorHandler handler = new TestErrorHandler();
reader.setFeature(WSDLReader.FEATURE_VALIDATION, true);
reader.getErrorReporter().setErrorHandler(handler);
URL wsdlURL = getClass().getClassLoader().getResource(fWsdlPath);
assertNotNull("Failed to find the WSDL document on the classpath using the path: " + fWsdlPath + ".",