I am interested to know how to fix the first problem.
Content type application/xml does not equal expected type of application/x-java-jnlp-file
The JaNeLA help offers:
The content type or application MIME type was not expected.
- If this error is returned from a real live server, it causes the client browser to simply display the contents of the JNLP files in XML format in the browser! Contact your server administrators to add a content type.
- For JNLP files selected from the local file system is incorrect.
The source of this JNLP is:
file:/C:/Documents%20and%20Settings/Administrator/Desktop/sample.jnlp
.. so you can safely ignore this warning.
Another problem
As mentioned n comment.
<information os="linux"> <title> SwingSet2 Demo on Linux </title> <homepage href="docs/linuxhelp.html"> </information>
This homepage element should be completed with / , for example:
<information os="linux"> <title> SwingSet2 Demo on Linux </title> <homepage href="docs/linuxhelp.html"/> </information>
source share