I am working on a proof-of-concept implementation to prove we can generate PDFs from our dynamically generated HTML. Doing this, I get the following exception:
ExceptionConverter: org.xml.sax.SAXParseException: White spaces are required between publicId and systemId.
From the line:
HtmlParser.parse(document,
new InputSource(new StringReader(newMarkup.toString())));
Where the HTML in newMarkup was cleaned using JTidy.
Can anybody point me to a reference on this error message or explain it to me? Any help would be greatly appreciated.
Sean