Reputation: 75
I'm trying to figure out the best way to install my Java app on client computers. The main guideline here is that these clients are computer illiterates - so the less fuss the better.
I was thinking of using a model that would launch a Java Web Start app which would both take care of the registration and installation processes at once.
I want these clients (real estate agents, mostly) to be able to go to a link on the main page, there presented by a nice Web Start screen (or even embedded Java applet) where they have a single form to fill out and hit Install and the latest version of the program gets installed on their computer.
The guidelines here are:
Additionally/Optionally:
I'd love some pointers on this - are there such systems already available?
Upvotes: 1
Views: 502
Reputation: 75356
Check out the latest Web Start. It does the jar-update magic automatically (as always) but ALSO allows you to do lazy loads of jar files. plus run offline.
If you want to populate the local cache then jar files should have versioned names and then your "update"-application can require these. They will then be ready when the program runs the next time.
Upvotes: 1