Wrong Java Web Start file association documentation at java.sun.com
Sun’s JNLP syntax documentation documents the syntax for the <association> tag incorrectly.
The wrong usage is:
<association> <mime-type="application-x/swingset2-file"/> <extensions="swingset2"/> </association>
That’s not just wrong documentation, it’s invalid XML.
The correct usage is:
<association mime-type="application-x/swingset2-file" extensions="swingset2" />
I have filed bug 6182087 on the Java Bug Parade about this.
December 8th, 2004 at 4:37 pm
[…] when you double click on it. The first part was easy - Keith Lea already documented the problem, and Go […]