Tagged Questions

Java Web Start (JWS) is the Oracle technology used to launch rich client (Swing, AWT, SWT) desktop applications directly from a network or internet link. It offers 'one click' installation for platforms that support Java.

learn more… | top users | synonyms (2)

15
votes
2answers
228 views

Why does Java Web Start redownload jars from JBoss?

We just discovered that every time we restart JBoss, all of our Java Web Start clients redownload all of their jars, instead of reusing the cached jars, even if our application has not changed. From ...
15
votes
8answers
1k views

Java Web Start - Popularity

I recently used a Java Web Start application. I launched it from my web browser using an embedded jnlp link in the page I was viewing. The application was downloaded, launched and worked just fine. It ...
8
votes
2answers
214 views

Any Java IDE which can quickly establish a local project based on a remote JNLP file for instant debugging?

Given a remote JNLP which works (all jars are available etc) but you need to run a debug session on the code. Is there any facility that easily allows you to create a local project in ANY reasonably ...
8
votes
3answers
2k views

Why does Java Web Start say a signed jar file is unsigned?

Java Web Start (JWS) says that it can't launch my application because the jar file is unsigned: Error: Unsigned application requesting unrestricted access to system Unsigned resource: ...
7
votes
1answer
1k views

How to debug Java Web start applications?

The problem in short: I have a Java Web Start Application that I launch from live site by download a tailored JNLP file. The problem is that once the Java Web Start application has loaded, the ...
7
votes
3answers
726 views

Launching a desktop application from a web site

Is it feasible to launch an application via a browser / URL? What are the options for doing this? I know the way to do it with IE and Windows (which usually doesn't work). Ideally, I would like this ...
7
votes
4answers
8k views

How can I debug applications under Java Web Start (JNLP)?

I know how I can debug a remote Java VM with Eclipse. Bit how can I do it with a Java Web Start program. I have a problem that only occur in Java Web Start. It must be security related. I need a ...
6
votes
1answer
143 views

Alternative to Preferences in Java

I'm using the Java Preferences API to store and retrieve small pieces of information in a swing/java application. Now i have setup Java Web start to launch the application from my web page, and I get ...
6
votes
1answer
142 views

AWTPermission Exception while implementing Automatic update desktop application using java web start

I am working in a Desktop application that provides Online Backup of data. In my application i am trying to implement automatic software update feature. For this i am using java web start. I have ...
6
votes
3answers
5k views

Passing command line arguments to javaws (Java WebStart) executable

Summary for those who might not want to read that much: How do I do this: ? If we could pass ad-hoc command-line args to javaws, then javaws apps could be more like "1st class citizen" "ordinary ...
5
votes
1answer
101 views

JNLP with local codebase - how to update?

It is legal to specify codebase like this: <jnlp spec="6.0+" codebase="file:/c:/MyApp/" href="myapp.jnlp"> When you import this with JWS it creates desktop shortcut and the ...
5
votes
2answers
476 views

Alternatives to Java Web Start?

We're having huge issues with Java Web Start in production. We're afraid to release because every time we do, help desk gets calls from 1/3 users getting an "unable to launch" error. It's hard to tell ...
5
votes
4answers
248 views

Using Java Compiler API without requiring install of JDK

Hello All I am writing some software that will allow users to create their own Java classes for a specific use in my software package. Obviously, my software will need to be able to invoke a Java ...
5
votes
2answers
407 views

Java webstart heap dump

I have been trying to get webstart to dump to a heap dump when it runs out of memory. I know the jmap/jconsole way of doing it, but what I really want to do is add the option to jnlp file and have ...
4
votes
1answer
53 views

How to restrict Java Web Start to run only a set of known .jnlp files? [closed]

Is there a way to restrict the .jnlp files Web Start is allowed to load to a known set of URLs? Company policy prohibits users to install any software and Java Web Start has been flagged because it ...
4
votes
1answer
140 views

Is there a JNLP Un-install event?

Does Java Web Start have any callback when your JNLP deployed app is going to be un-installed (either via Add/remove programs or Java Control Panel)? Reason for this is to delete any app-generated ...
4
votes
1answer
522 views

Java Web Start application gives MARSHAL exception when data loaded from database via remote EJB

I have a Java Web Start application calling remote Java EE 5 EJBs to load in data from a database. When the data is returned from the EJB to the client, I get the following exception. Looking it up ...
4
votes
3answers
1k views

Java web start doesn't launch

On my Windows 7 x64 machine, I'm having problems launching my remotely deployed Web Start app (the Web Start app launches correctly on another PC as expected). In IE or FF, I click on the web start ...
4
votes
3answers
425 views

Any way to have Java Web Start automatically install shortcuts?

We're deploying a Web Start app that I and the other developers know how to install the shortcuts for (Control Panel -> Java on Windows, /Applications/Utilities/Java Preferences on OS X), but we have ...
4
votes
3answers
1k views

Web Start Application built on NetBeans Platform doesn't create desktop shortcut & start menu item

I've created a NetBeans Platform application that is launched using Java Web Start. I built the WAR file using the 'Build JNLP Application'-command in Netbeans 6.8. I've added a desktop shortcut and ...
4
votes
5answers
596 views

In java web start where does the jar file get downloaded to?

As per Java web start where does the jar file get downloaded on a client machine?
4
votes
5answers
2k views

Java Web Start vs Embedded Java Applet

I'm going to deploy my Java game to show it to my friends and whatnot, but I'm having trouble deciding between Java Web Start and applets. Under what conditions is one preferable over another and ...
4
votes
4answers
3k views

Creating a desktop icon using JWS JNLP for a JavaFX app

I am trying to get a custom destop icon to be displayed for my app but for some reason no matter what I do the same default java icon shows up. I have tried everything I can think of and gone and ...
3
votes
4answers
129 views

How to distribute my Java program so that it is runnable by double-clicking a single file?

I have a Java rich client desktop app. that I want to distribute on some computers at work, but I've never done something like this before. People aren't too computer-savy at my workplace and since it ...
3
votes
2answers
108 views

Java: How do I pass parameters to a Webstart Applet?

Scenario: server provides same Webstart Applet to many different (but authenticated) clients. Each Applet has to "know" which client it is on. Therefor the server has to be able to pass some ...
3
votes
1answer
238 views

Java Web Start / JNLP for non-GUI console application / Code update distribution

I have a simple data validation command line utility that I've written in Java. We distribute this utility to our clients as a JAR file. Our clients run this utility on data in their local machines. ...
3
votes
1answer
136 views

Expired certificate for Java Web Start

How does JWS react to code signing certificate expiration? From my observation it appears to ignore expiration date of CA-signed certificates, but I would like to find some hard proof (e.g. official ...
3
votes
1answer
226 views

Are javaws exit codes really broken?

I was working to automate same java code execution using JNLP and I was surprised to discover that jawaws did not gave me a valid return code. Original execution line was: javaws -wait ...
3
votes
2answers
346 views

How to persuade Java Web Start to actually remember password?

I use Java Web Start. The file is on http server, that needs name and password (it's windows server). What the Java Web start does is this (with user and IP redacted): The same on MS Windows ...
3
votes
1answer
373 views

Automatically clearing the Java Web Start Cache

I have a Java Web Start application. I specify the resource (jars, images, etc) version and change every time there is a new version. Unfortunately sometimes the resources are not always updated when ...
3
votes
13answers
926 views

How to learn game development?

I've been a web programmer for a while and I can also program in Java. I have an idea for a small, multiplayer RPG game that I want to work on. It will be played through a java applet in the user's ...
2
votes
0answers
51 views

Java Webstart and URLConnection caching API

Following code does not always work when executed with webstart URL url = new URL("http://repo1.maven.org/maven2/"); URLConnection connection = url.openConnection(); ...
2
votes
1answer
53 views

Java Web Start - How to clear cache (or update the app from user's perspective)

After the JNLP gets downloaded in the browser it becomes cached so it doesn't need to be downloaded again, which is good. However, as a consequence, if I update the JAR that the JNLP uses, users will ...
2
votes
1answer
35 views

Using Maven to build a Java Web Start application

I'm new to almost all related things, but would like to build a Java Web Start application using Maven. I also need to repack a specific .jar (commons-httpclient-3.1.jar), or it won't sign with ...
2
votes
1answer
61 views

Is possible to manipulate the value of <input type=“file”/> from a signed java app?

I'm trying to use a client-side JWS application with the jQuery Uploadify plugin. I'm using a JWS app to do client-side file manipulation which I then want to upload to my web server. I've limited ...
2
votes
1answer
83 views

Where to put application data and temp files on Windows, Linux and MAC if java-application is being lauched using JWS

Can we allow user to set and save application data and temp data using Java-Application that has beenrun/launch using JWS ? Does it make sense ? We would like to know if user run JNLP directly then ...
2
votes
1answer
160 views

What is the difference between runnable jar library handling options?

So I will be using Java Web Start to deploy the java application. When exporting to a Runnable Jar, there are three options in eclipse Helios. Extract required libraries into JAR Package required ...
2
votes
1answer
52 views

Wanted: a webpage that can discover and play music from the local filesystem

In my scenario, a user visits my webpage and is prompted to select a Music folder on her local filesystem. The web app crawls the folder and indexes it, reading all the metadata from the songs. ...
2
votes
1answer
96 views

remote ejb call trapped in the lookup in linux server

I'm using glassfish 3.1.1 with an application client container called via java web start. My program is not working , it remain glued in the lookup() and never pass it . Context c = new ...
2
votes
2answers
110 views

Java Web start - how to detect when app is closed?

How do you detect when an App is open or closed? 1) User clicks on link/button 2) Web Browser launches JAVA desktop app via JAVA web start 3) (At this point how do you have the browser detect if ...
2
votes
2answers
150 views

Java Web Start getDocumentBase

I am experimenting with Java Web Start. I have just written a basic JApplet which has a method on the Applet class called getDocumentBase(). This returns the full URL to the location the Applet is ...
2
votes
3answers
115 views

Java web start without X

I need to start my application in different Linux servers using SSH. I thought to use java web start so I can pack my application once and run it on the servers by dynamically downloading the ...
2
votes
1answer
93 views

WebStart keeps trying to use Java 1.4 when I have Java 1.6 installed

I am having an issue where I have Java 1.5 and 1.6 installed but when I try to open a specific webstart app, it keeps trying to use Java 1.4. I have tried uninstalling Java 1.4 but when I try to open ...
2
votes
0answers
129 views

JAVA web start download update in background

I have deployed an application using java web start. It is working fine. I've put in my jnlp file. Whenever the desktop shortcut icon is clicked it will check for the latest updates and download them ...
2
votes
2answers
2k views

Java web start on iPad

Can I run Java applications (Java Web Start) on iPad? Looks like this is not possible, but someone suggested using Cloud Browse (an application I couldn't' find) to run Java. Any solutions? UPDATE: ...
2
votes
2answers
185 views

Possible to open/manipulate a Java Web App in .NET (C#/VB)?

I use a Java web app (app/screenshot, you'd need to sign up, but it's just a java web app), however I'd like to automate its functionality inside of a .NET application (C# or VB, doesn't matter, I'd ...
2
votes
4answers
990 views

Memory allocation for Java Webstart Application

I'm using a Java webstart application called BLAST2GO I'm running into problems with memory allocation. It needs to load a large data set into memory, so I've been trying to allocate 3-6GB to this ...
2
votes
1answer
706 views

A proper way to use native libraries in JNA with Applet deployed by JWS (java web start)

I am using an applet deployed through JWS (Java Web Start). This applet has some native functionality included: JNA. User32, Kernel32 and Gdi32. When I launch the applet through JWS, I get the ...
2
votes
2answers
151 views

Java Web Start deploy on Windows startup

I have a Java application that I'm about to begin to use Web Start to deploy. But a new demand has made me rethink this, as I'm now required to add a piece of functionality that allows the end user to ...
2
votes
2answers
314 views

Is it possible to force cache clearing when a java web start application is updated?

Is it possible to force cache clearing when a java web start application is updated from the command line?

1 2 3 4 5