Error Running JWS
I use the following jnlp to install then launch my application however, it produces and error. Can anyone tell me what's going wrong? Here is the wrapped exception:
java.io.EOFException: Unexpected end of ZLIB input stream
at java.util.zip.InflaterInputStream.fill(Unknown Source)
at java.util.zip.InflaterInputStream.read(Unknown Source)
at java.util.zip.ZipInputStream.read(Unknown Source)
at com.sun.deploy.net.HttpDownloadHelper.decompressWrite(Unknown Source)
at com.sun.deploy.net.HttpDownloadHelper.download(Unknown Source)
at com.sun.deploy.cache.Cache.downloadResourceToCache(Unknown Source)
at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
at com.sun.javaws.Launcher.downloadResources(Unknown Source)
at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
at com.sun.javaws.Launcher.launch(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 jnlp is:
<?xml version ='1.0' encoding ='windows-1252'?>
<jnlp spec="1.0+" codebase="http://therealrichmon.googlepages.com/" href="RichMon.jnlp">
<information>
<title>RichMon</title>
<icon href="RichMon.gif"/>
<shortcut>
<desktop/>
<menu submenu="RichMon"/>
</shortcut>
<vendor>Richard Wright</vendor>
<homepage href="http://therealrichmon.googlepages.com/"/>
<description>Lightweight Database Monitoring Tool</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5*" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="sRichMon.jar" main="true" download="eager"/>
</resources>
<application-desc main-class="RichMon.RichMon"/>
</jnlp>

