You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- I don't quite feel that Java Web Start is the answer here. Assume this is a largish application - close to an application "container" like Eclipse (the IDE) is, and like Firefox is.stolsvik– stolsvik2008-11-20 16:06:03 +00:00Commented Nov 20, 2008 at 16:06
- 7Webstart is ok, but has lots of wierd issues. especially if you're installing multiple versions or the same version multiple times (which is not uncommon for developers/QA), and lots of things were you have to go to the cache viewer, etc.John Gardner– John Gardner2008-11-20 18:25:28 +00:00Commented Nov 20, 2008 at 18:25
- 2Also, if you use webstart, the user can always turn on the java console, so be careful with whatever you're sending to System.out/err streams.John Gardner– John Gardner2008-11-20 18:26:17 +00:00Commented Nov 20, 2008 at 18:26
- 3The problem with JWS is the security manager. It's further stricter than the normal one.guerda– guerda2008-12-16 12:59:50 +00:00Commented Dec 16, 2008 at 12:59
- 1Be aware that Java Web Start traditionally has had a lot of caching problems. You can help a lot by ensuring that each version of each file you deploy has a unique URL (e.g. by embedding the version name or release number in the URL).Thorbjørn Ravn Andersen– Thorbjørn Ravn Andersen2010-02-12 11:51:54 +00:00Commented Feb 12, 2010 at 11:51
| Show 4 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-java