[icedtea-web] RFC: PR766 javaws fails to parse an <argument> node that contains CDATA
Omair Majid
omajid at redhat.com
Fri Sep 16 15:02:44 PDT 2011
Hi,
As explained in the bug report [1], icedtea-web ignores CDATA sections
in JNLP files. I dug into the parser code a bit and found a few things.
The code that sanitizes comments from jnlp files (sanitizeInput)
actually removes CDATA sections along with comments. This is probably a bug.
(As an aside, I suspect that the reason this is done separately from the
main parser is because the main parser is a rather strict XML parser and
some of the locations where comments can appear in jnlp files are not
accepted by the XML standard. See
https://bugzilla.redhat.com/show_bug.cgi?id=449160 for examples of jnlp
files that contain invalid comments)
The NanoXML parser itself can parse and see CDATA sections. However, it
is not quite perfect. It has trouble parsing when CDATA sections appear
in certain places, or are surrounded by certain elements.
I have attached 2 patches. The first patch adds a set of test cases, and
the second makes the sanitizer skip special sections and just remove
comments.
Running the junit tests (including the ones in the patch) shows:
Before fix: 5 Errors, 3 failures
After fix: 7 Errors, 1 failure.
The appearance of 2 new errors is a little surprising. But it turns out
that the additional failures are being caused in JNLPMatcher tests -
CDATA sections that were previously being sanitized away are now being
fed to the parser which is failing to handle them. I will post a patch
to address this later.
Any thoughts or comments?
Cheers,
Omair
[1] http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=766
-------------- next part --------------
A non-text attachment was scrubbed...
Name: cdata-test-additions-01.patch
Type: text/x-patch
Size: 7001 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110916/02aeaf1a/cdata-test-additions-01.patch
-------------- next part --------------
A non-text attachment was scrubbed...
Name: do-not-remove-cdata-sections-01.patch
Type: text/x-patch
Size: 2427 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110916/02aeaf1a/do-not-remove-cdata-sections-01.patch
More information about the distro-pkg-dev
mailing list