Skip to content
Snippets Groups Projects
Commit 0ef0e31a authored by juanf's avatar juanf
Browse files

SSDM-2357 : Fix Plasmapper connectivity from ELN on Stelling Server

SVN: 34505
parent de1b34ac
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,10 @@ public class PlasmapperConnector
svgFileURLPath = svgFileURLPath.substring(0, svgFileURLPath.lastIndexOf("\n"));
}
// System.out.println("Downloading SVG file: " + serverURL + "/" + svgFileURLPath + " to " + svgOutputFile);
if(svgFileURLPath.startsWith("/")) {
svgFileURLPath = svgFileURLPath.substring(1, svgFileURLPath.length());
}
URL svgFileURL = new URL(serverURL + "/" + svgFileURLPath);
File svgOutputFile = new File(svgOutputFilePath);
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment