Tagged Questions
JNLP stands for Java Network Launch Protocol. It is the format of the XML based files used to configure the details of applications & applets launched using Java Web Start.
15
votes
5answers
3k views
How to allow running only one instance of a Java program at a time?
I need to prevent users from starting my Java application (WebStart Swing app) multiple times. So if the application is already running it shouldn't be possible to start it again or show a warning / ...
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 ...
7
votes
5answers
505 views
Combination of Launch4J and Java Web Start?
I have a working JNLP application which I need to distribute to various non-technical end users.
If the user's machine has a recent JVM installed, everything is fine. They just double-click the JNLP ...
7
votes
3answers
492 views
Python equivalent to Java's JNLP Web Start?
Is there any way to achieve the same functionality in Python, i.e., launching a script from a browser and automatically updating it from a central server location?
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 ...
5
votes
1answer
98 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
5answers
3k views
Local alternative to JNLP file?
Try as I might, I can't get a JNLP file to run locally (via a double-click). It seems to be an issue of locating a jar file, even when I specify it relative to the jnlp file. I get the following ...
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
87 views
How do I start a JNLP application programmatically?
I have a working JNLP application, but would like to add some end-to-end smoke test.
Is it possible given an URL to download, start and programatically manipulate a JNLP application?
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
5answers
594 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
1answer
146 views
Is it possible to specify the Java U version when using Web Start?
I have a Java WebStart application for which I want to specify that the client use JRE 1.6.0_17 or later.
To the JNLP file I've tried adding:
<j2se version="1.6.0_17+"/>
or
<j2se ...
4
votes
2answers
2k views
Java Webstart with Tibco Native Libs
I am trying to deploy an application that uses the native implementation of Tibrv through the TibrvJ library using Java Webstart.
I have packaged up all of the Windows dlls from inside ...
4
votes
5answers
11k views
jar resources in jnlp are not signed by the same certificate
I've been working with web start for a couple years now and have experience with signing the jars and what not. I am taking my first attempt at deploying a RCP app with web start and though I have in ...
4
votes
2answers
2k views
How do I add a MIME type to .htaccess?
I would like to add the following MIME type to a site run by Apache:
<mime-mapping>
<extension>jnlp</extension>
<mime-type>application/x-java-jnlp-file</mime-type>
...
3
votes
1answer
67 views
How to ensure that a jnlp is run on a 64bits jvm
I have a JNLP applet that is run on a 64bit computer with both 32 and 64 bits JVM installed.
The JNLP must run on the 64bit JVM in order to execute correctly. Is there a way to force the use of a ...
3
votes
1answer
115 views
Prevent Firefox from downloading endless JNLP files?
Every time I click a Java Webstart button, Firefox downloads the JNLP file and puts it in my Downloads folder. I have over 500 JNLP files from my JWS app called name-123.jnlp and so on. Internet ...
3
votes
1answer
52 views
Jnlp hangs when downloading resources
can anybody help me to determine why when you ejexecute this jnlp
http://crrcsimeditor.sourceforge.net/launch.jnlp it
hangs after download all resources but before execute the application. Are there ...
3
votes
3answers
181 views
JNLP as a Applet in HTML page
I'm trying to run my JNLP within an HTML page, but the java plugin does not run the JNLP, runs only the Applet.
Here is my code:
<applet width="800" height="500" ...
3
votes
1answer
235 views
Maven-webstart-plugin to include runtime dependencies
When building a jnlp with the maven-webstart-plugin, I found that the runtime dependencies weren't being included in the jnlp.
I'm using a template like this:
<?xml version="1.0" ...
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
2answers
320 views
Java Web Start with Signed
All,
I am having some trouble running a java web start application that has been generated by Netbeans 7.
I have migrated my existing java 6.9.1 application to Netbeans 7 and attempted to make it a ...
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
3answers
343 views
Poll applet download progress in jnlp with applet descriptor and in javascript
I have a WebStart applet that I deploy using the deployJava script. The jnlp file looks like this:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="" href="launch.jnlp" ...
3
votes
2answers
180 views
Log Garbage Collection in Java Webstart
I want to log the GCs in my Java Webstart Apps.
I already tried the option
<j2se version="1.5+" java-vm-args="-verbose:gc -Xloggc:gc.log -XX:+PrintGCTimeStamps -XX:+PrintGCDetails" />
in the ...
3
votes
1answer
191 views
bundle a jnlp so you can add to dock on a mac?
I want to be able to drag Findbugs to the Dock on my Mac.
The problem is it's a JNLP.
Is there a distilled idiots guide to creating an Mac application bundle from a JNLP?
I saw this article on the ...
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
1answer
956 views
Ruby NLP Libraries
Does anyone know of any good NLP frameorks for ruby?
I am considering using the Java open-nlp librabrary http://opennlp.sourceforge.net/ via JRuby.
I am reluctant to go down the JRuby route for a ...
3
votes
2answers
139 views
Where are Java WebStart resources downloaded to?
Can't locate stored files, but they seem to be downloaded only for the first time i run JNLP file. I'm on Mac OS X 10.6.
3
votes
2answers
1k views
jnlp webstart nativelib: how to specify different architecture for os
in a java webstart file (jnlp) you can specify the nativelib tag to load binaries. you can also specify toload different ones for different operating systems by also specifying the os attribute.
for ...
3
votes
1answer
945 views
How to recreate shortcut to webstart application?
I use the shortcut tag in my appliation's jnlp descriptor to create a desktop link and a menu entry for my application.
If these shortcuts get deleted on the client - how can they be reinstalled ...
3
votes
1answer
677 views
Automate builds for Java RCP for deployment with JNLP
I've found many sources that talk about the automated Eclipse PDE process. I feel these sources don't do a good job explaining what's going on.
I can create the deployable package, in a ...
2
votes
1answer
50 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
47 views
JNLP Launch Error
I have a JNLP file that was working fine and it looks like my computer no longer runs it after I upgraded to Java 1.7 (32 bit jdk1.7.0_02)
When I select view details in the Unable to launch the ...
2
votes
1answer
47 views
Can JNLP/Java Web Start launch a command line application
I have a simple JNLP file that launches a Hello World command line application. When I download the JNLP file from Tomcat (7), Java Web Start starts up and then goes away without launching the command ...
2
votes
2answers
76 views
I am having difficulties deploying a Swing Application via Web Start/Applet
I have constructed a Swing Application that needs to be run from a browser. Here is the code for the HTML file, JNLP file, and the Swing Applications Code. Is there a clear reason why this is not ...
2
votes
1answer
82 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
0answers
31 views
Using SwingEventMonitor to monitor other applications?
How do I use SwingEventMonitor to monitor mouse events in applications running in other JVMs?
The demo code I have can monitor mouse clicks in applications running within its own JVM, but ...
2
votes
0answers
84 views
Can the “Java console” window be programmatically enabled within a JNLP application
When running a JNLP application (for example), "Java console" is opened, containing the output of the program and a bunch of debug functionality.
Whether the console is opened or not, is determined ...
2
votes
1answer
275 views
Managing upgrades to Java 7
My team uses a lot of Java applications and applets (both internally created and from external sources).
Since the release of Java 7, which we are using for some applications, we have found a number ...
2
votes
5answers
178 views
Getting Data from Internet in Java
I thought of making the following application for my college project in java. I know core java. I want to know what should i read "specifically" for this project as there is less time:
It will have ...
2
votes
2answers
109 views
Unwanted login dialog when running application from a JNLP
I'm building an application using the OpenCmis library to communicate with Cmis repositories. The librairy itself call REST services using the HttpUrlConnection object. So I don't have any access to ...
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
4answers
171 views
Webstart app not launching for all users
We have a webstart application that after startup uses EJB's to connect to a jboss server. We recently migrated this server to jboss5 and have update the webstart application that connects to it. ...
2
votes
1answer
492 views
Java Applet via JNLP: System.Properties not being “set”
It is years since I have worked in Java (that's my excuse).
I am trying to launch a Java Swing UI as an Applet (previously done via Web Start).
I have modified the jnlp file to reflect the changes ...
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
1answer
251 views
SecurityManager problem with SWT embedded Mozilla browser running over Java WebStart (jnlp)
I am developing non-standard application. Basically it's SWT application
using embedded Mozilla browser (mozilla-interfaces-1.9.2.12.jar, mozilla-glue-1.9.2.12.jar)
that should display html pages ...
2
votes
1answer
1k views
Problem using JNLP to launch applet with Java3D dependencies
As title says currently trying to use JNLP as a means of launching an applet with Java3D dependenices for any user who may not have Jave3D installed on their system. Unfortunately getting an error to ...
2
votes
0answers
292 views
How SingleInstanceService of Jnlp Api works?
As it is mentioned that SingleInstanceService allow applications launched under Java Web Start to register themselves as singletons, and to be passed in new parameter sets when user attempts to launch ...
2
votes
2answers
1k views
How to bundle JNLP API with Maven Project
I have a project where I need the JNLP API. I did not find an artifact for that on Maven Central, so I added an external Repository which offers that to my pom. That repo went offline this weekend, ...