ServiceDescription service = null;
InputStream in = file.getClassLoader().getResourceAsStream(SERVICEWSDL);
boolean foundservice = false;
try {
if (in != null) {
WOMBuilder builder = WOMBuilderFactory.getBuilder(WOMBuilderFactory.WSDL11);
WSDLVersionWrapper wsdlVersionWrapper = builder.build(in,
new AxisDescWSDLComponentFactory());
WSDLDescription womDescription = wsdlVersionWrapper.getDescription();
Iterator iterator = womDescription.getServices().keySet()
.iterator();
if (iterator.hasNext()) {