ProjectExporter.unpackageAll(fileName, dest.getAbsolutePath());
List<String> contents = ProjectExporter.getZipContents(fileName);
for (String fName : dest.list()) {
if (contents.contains(fName) && fName.endsWith("-soapui-project.xml")) {
new ImportWsdlProjectAction().perform(workspace, new File(dest, fName).getAbsoluteFile());
break;
}
}
} catch (Exception e1) {