Unexpected Error while launching
Hi,
I am using jdk1.5.0_11 and jre1.5.0_11. I am trying to run an application but I am getting following error
An error occurred while launching/running the application.
Title: Client Server Application
Vendor: Moin
Category: Unexpected Error
Unexpected exception: java.lang.Exception
java.lang.Exception
at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
My jnlp code is as follows
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+"
codebase="http://localhost:8080/ChatApplet/Chat.html"
href="clientserver.jnlp">
<information>
<title>Client Server Application</title>
<vendor>Moin</vendor>
<description kind="short">
Test of the JNLP SingleInstanceService
</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5"/>
<jar href="chatapplet.jar"/>
</resources>
<applet-desc name="ClientBuffer" main-class="ClientBuffer" width="300" height="300" />
</jnlp>
Is this correct? Anything else is needed to be added here? Please help out.
Thanks,
Moin

