>Does anyone have any suggestions about what might be going on and if
>there is a fix? Or is it by design - I didn't think so.
see http://mindprod.com/jgloss/jnlp.html
There are some parms that control when you update. However, I think
this area may still be buggy. I am having a heck of time getting
desktop shortcuts to JWS apps to work.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
> I recently updated the main jar file in an application I'm working on at
> http://www.tciworks.info/JWS/index.jnlp using JWS, but for some reason
[quoted text clipped - 8 lines]
>
> Lionel.
I had this problem similar to yours.
My application uses the SingleInstanceService, and as such can only use
background update, like
<update check="background" policy="always" />
.
Because of this, you should specify
<shortcut online="true">
If this is set to offline, it will not check for updates from the
(desktop) shortcut.
Using
<offline-allowed/>
still works. Hope this solves your problem. Also do a force reload of
the page after updating the jnlp (I experienced it helps).

Signature
Sabine Dinis Blochberger
Op3racional
www.op3racional.eu
Lionel van den Berg - 04 Mar 2008 13:48 GMT
>> I recently updated the main jar file in an application I'm working on
>> at http://www.tciworks.info/JWS/index.jnlp using JWS, but for some
[quoted text clipped - 26 lines]
> still works. Hope this solves your problem. Also do a force reload of
> the page after updating the jnlp (I experienced it helps).
Thanks to both replies. This looks particularly helpful, will be playing
with it soon :).