[XML-SIG] Parsing exception on CDATA

Lars Marius Garshol larsga@ifi.uio.no
15 Jul 1999 07:45:11 +0200


* wask@mcc.com
| 
| Why do I receive a
| 
| 	SAXParseException: Illegal construct <snip>
| 
| on
| 
| 	<![CDATA [The tag <Author> should be ignored.]]>
                ^
Whitespace is not allowed before the second '[', which is what causes
the problem. Remove the space and you should be OK.

--Lars M.