hi guys..i am getting an exception while launching my application. i am trying to launch a swing application. It gives the following error...
An error occurred while launching/running the application.
Title:
Test Demo Application
Vendor: Test Software inc.
Category: Unexpected Error
Unexpected exception: java.lang.Exception
My launch file (JNLP file ) is as follows
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SwingSet2 Demo Application -->
<jnlp
spec="1.0+"
codebase="http://localhost:8080/base/test"
href="TestJavaWebStart.jnlp">
<information>
<title>Test Demo Application</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>
<all-permissions/>
</security>
<resources>
<j2se version="1.3"/>
<jar href="test.jar"/>
</resources>
<application-desc main-class="com.test.main.testdownload"/>
</jnlp>
can someone tell me what exactly is the problem