I made a little application what I would like to share on the www with JNLP technology webstart.
When I clicked to launch button simply show the browser the content of JNLP file.
Your web server returns that file with a content-type of "text/plain". This tells the browser it is plain text and so it shows you plain text. Configure your web server to return JNLP files with the appropriate MIME type.
(I don't remember exactly what that is but I'm sure the information is readily available online.)_
L Kov
Greenhorn
Joined: Jan 30, 2011
Posts: 5
posted
0
Paul Clapham wrote:Your web server returns that file with a content-type of "text/plain". This tells the browser it is plain text and so it shows you plain text. Configure your web server to return JNLP files with the appropriate MIME type.
(I don't remember exactly what that is but I'm sure the information is readily available online.)_
Ok. Thank you.
I put this code another site, where maybe this settings already set.
I got an other error:
JNLParseException[ Could not parse launch file. Error at line 0.]
at com.sun.javaws.jnl.XMLFormat.parse(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.Main.launchApp(Unknown Source)
at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
at com.sun.javaws.Main$1.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
The wrapped exception is:
java.lang.NullPointerException at com.sun.deploy.xml.XMLParser.parseXMLAttribute(Unknown Source)
at com.sun.deploy.xml.XMLParser.parseXMLElement(Unknown Source)
at com.sun.deploy.xml.XMLParser.parseXMLElement(Unknown Source)
at com.sun.deploy.xml.XMLParser.parseXMLElement(Unknown Source)
at com.sun.deploy.xml.XMLParser.parseXMLElement(Unknown Source)
at com.sun.deploy.xml.XMLParser.parse(Unknown Source)
at com.sun.javaws.jnl.XMLFormat.parse(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.Main.launchApp(Unknown Source)
at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
at com.sun.javaws.Main$1.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)