| Author |
nothing is displayed after the application is loaded
|
aryan Sharma
Greenhorn
Joined: Oct 10, 2005
Posts: 27
|
|
when i try to load my application by clicking on a link which specifies path to my JNLP file, nothing is happeing...it shows that it is downloading my application (i can say this coz my <title> is showed properly) and then the processing stops and nothing is displayed...no exception/error is also shown. my JNLP file is as follows: <?xml version="1.0" encoding="utf-8"?> <!-- JNLP File for Demo Application --> <jnlp spec="1.0+" codebase="http://localhost:8080/mypath/test/" href="TestJavaWebStart1.jnlp"> <information> <title>DemoApplication</title> <vendor>Test Software inc.</vendor> <description kind="short">A demo of the capabilities of the Swing Graphical User Interface.</description> <offline-allowed/> </information> <security> </security> <resources> <j2se version="1.3"/> <jar href="test.jar" main="true"/> </resources> <application-desc main-class="com.test.main.temp"/> </jnlp>
|
 |
Jared Cope
Ranch Hand
Joined: Aug 18, 2004
Posts: 243
|
|
Try turning on webstart logging and have a look at the resulting log file after you try to download and run. Sounds like the application is failing suddenly and exits without doing anything. Cheers, Jared.
|
SCJP 1.4 91%, SCJP 1.5 88%, SCJD B&S
|
 |
 |
|
|
subject: nothing is displayed after the application is loaded
|
|
|