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>