//This is not correct in OSGi environment, so considering that one Catalog instance will be shared per OASISCatalogManager
//instance, we will call the parseCatalog(URL) to add the file
//catalogManager.setCatalogFiles(catalogURL.toString());
}
URL wsdlURL = JAXWSUtils.getWsdlURL(bundle, wsdlFile);
WSDL4JWrapper wsdlWrapper = new WSDL4JWrapper(wsdlURL, this.configurationContext, catalogManager);
Definition wsdlDefinition = wsdlWrapper.getDefinition();
Service wsdlService = wsdlDefinition.getService(serviceQName);
if (wsdlService == null) {
throw new Exception("Service '" + serviceQName + "' not found in WSDL");
}