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>

[3024 byte] By [richard_a_wrighta] at [2007-11-27 7:34:01]
# 1

My first (OK - only) suspicion is that the file..

http://therealrichmon.googlepages.com/sRichMon.jar

was somehow corrupt. Unfortunately your offer

of Dukes (none) combined with my minimal

monthly download limit (100meg) and the size

of that Jar (>5 meg.) did not make me conducive

to downloading it to investigate further.

You might try using the jar tool to list the table

of contents (or extract the content) locally, just

to check that it is an archive that Java/web start

can deal with.

AndrewThompson64a at 2007-7-12 19:14:25 > top of Java-index,Desktop,Deploying...