file1.getName().equals("no-service.wsdl")) {
continue;
}
try {
WSDL11ToAxisServiceBuilder builder = new WSDL11ToAxisServiceBuilder(new FileInputStream(file1), null, null);
AxisService service = builder.populateService();
System.out.println("Testinf file: " + file1.getName());
configContext.getAxisConfiguration().addService(service);
OutputStream out = new FileOutputStream(new File(outLocation, file1.getName()));
service.printWSDL(out, "http://google.com/axis2/services" ,"services");
out.flush();