Cfdocument bug?
I am using a CFHTTP to call a page to use the content to create a PDF using cfdocument in CF9.
If the document has two break tags prior to a close td tag (maybe other scenarios, did not test) then you receive the following error:
An error: ERROR encountered loading TEMPLATEPATH: java.io.IOException: Parsing problem occured during the rendering process of this document.
If you put a space between the break tags, it still errors. If you put a non-breaking space between the break tags, it will render properly.
This scenario worked when using Coldfusion 7, not sure about CF 8, never tried it.
Maybe someone else could try it and see what they get.
<html>
<head>
<title>test page</title>
</head>
<body>
<table>
<tr><td><br><br></td></tr>
</table>
</body>
</html>
Message was edited by: jingojango
