This question already has an answer here:
- XML Namespace URI with HTTPS? 1 answer
We are using Apache Batik to render SVG files. For security reasons, all the URLs are converted to HTTP.
Now, when we are rendering the SVG files, we get this issue.
Original SVG is:
svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"
Converted SVG is:
svg xmlns=\"https://www.w3.org/2000/svg\" xmlns:xlink=\"https://www.w3.org/1999/xlink\"
So, I tried with Dhttps.protocols
parameter from Java, no good. I'm digging source code for this.