private WebServiceInfo loadOldWsInfo(FileStore fileStore, WsdlFile oldWsdlFile) {
try {
FileStoreFile file = fileStore.getFile(oldWsdlFile.getLocator());
if (file != null) {
return new WebServiceInfoBuilder().build(file.getPhysicalRepresentation());
}
} catch (Exception ex) {
ex.printStackTrace();
}
return null;