url = ClassUtil.getResource(fileName, this.getClass());
}
if (url==null)
throw new WSDLException("null input", fileName);
URI uri = url.toURI();
WSDLLocator locator = new WSDLLocatorImpl(uri);
wsdlDefinition = reader.readWSDL(locator);
} catch (URISyntaxException e) {
log.error(e.getMessage(), e);
} catch (MalformedURLException ex) {
log.error(ex.getMessage(), ex);