Closed GoogleCodeExporter closed 8 years ago
OK, so I debugged this further and found that the issue was because we have
exploded ear deployment. replaceZipSeparatorStartingFrom method in UrlTypeVFS
appends a "!" at the end and that results in FileNotFoundException. I have
fixed this as follows in UrlTypeVFS:
if (zipPath.trim().length() == 0) {
url = new URL(prefix + "/" + zipFile);
} else {
url = new URL(prefix + "/" + zipFile + "!" + zipPath);
}
So only if zipPath has any contents we will add "!" else we will not. This will
be required for exploded deployments like ours.
Original comment by atul.ksh...@gmail.com
on 25 Jan 2013 at 7:22
fixed on trunk, comments are welcomed
Original comment by ronm...@gmail.com
on 20 Feb 2013 at 9:04
Original issue reported on code.google.com by
atul.ksh...@gmail.com
on 24 Jan 2013 at 11:51