I am getting an java.net.MalformedURLException: no protocol: /jsp/error.jsp, I have already seen lots of questions related to this, none of that helped me.
Here is my full stack trace
Caused by: java.net.MalformedURLException: no protocol: /jsp/error.jsp
at oracle.xml.xslt.XSLStylesheet.flushErrors(XSLStylesheet.java:2248)
at oracle.xml.xslt.XSLStylesheet.execute(XSLStylesheet.java:628)
at oracle.xml.xslt.XSLProcessor.processXSL(XSLProcessor.java:364)
at oracle.xml.jaxp.JXTransformer.transform(JXTransformer.java:504)
Please help me.
You are missing a protocol (
http://) and a domain (www.google.com) in your URL.This is a valid URL:
https://www.google.com/example.htmlYou need to give a valid URL, otherwise you will keep getting a
MalformedURLException.