Reputation: 2090
I'm working on an application in Java for a client, and I'm having some doubts about how to distribute it. I have read about Java Web Start, and have some questions:
Do you know another alternative rather than WebStart for deploy and update?
Thanks in advance.
PS: Sorry if is a duplicate post, I've been digging in SO for a couple of days and I haven't found an answer yet.
Upvotes: 0
Views: 254
Reputation: 718698
In answer to your first question, the user will always see that latest version of your application, even if they are using a Start Menu entry. This is stated clearly in the FAQ; see the answer to Q5.
In answer to your second question, yes an application can be run offline, provided that it has already been cached. This is mentioned in the FAQ answer to Q25. For more details, refer to the documentation of the information
element of the JNLP file; specifically look for the section on "offline-allowed" and what it means.
I'd recommend that you read the material on Oracle's Java Web Start web page to understand what JWS can (and can't) do.
Upvotes: 2
Reputation: 13656
for more info read similar article in this forum "stackoverflow"
Upvotes: 1