Tagged Questions
Java Web Start (also known as JavaWS, javaws or JAWS) is a framework developed by Sun Microsystems (now Oracle) that allows users to start application software for the Java platform directly from the network using a web browser.
16
votes
2answers
927 views
Applet served by Java Web Start, resources requested to WEB Server before look in the JAR files
I am new here and I apologize for my bad English.
I have a little problem with an Applet class served by Java Web Start technology. I have some platform dependent JAR files which Web Start download ...
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 / ...
14
votes
5answers
1k views
Mini-OSGi that can run in a sandbox (like AppEngine or WebStart)?
I really like the concept of modular bundles as implemented by OSGi.
I also like "managed deployment" services like Google AppEngine (for web application) or Java WebStart (for client software).
...
14
votes
5answers
1k views
Objections against Java Webstart?
Since the release of Adobe AIR I am wondering why Java Web Start has not gained more attention in the past as to me it seems to be very similar, but web start is available for a much longer time.
Is ...
8
votes
3answers
339 views
SQLite from inside .jar?
This doesn't seem like an exotic problem, but my colleague and I can't figure it out, despite prodigious research.
A Java project I'm working on requires regular contact with a database, even when ...
6
votes
10answers
917 views
What can I do to make jar / classes smaller?
I'm developing a Java Applet, and reducing the size of the binary code will make the applet open faster and will improve the user experience.
Is there anything I can do to reduce the size of classes ...
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 ...
6
votes
3answers
8k views
How do I pipe the Java console output to a file?
I found a bug in an application that completely freezes the JVM. The produced stacktrace would provide valuable information for the developers and I would like to retrieve it from the Java console. ...
6
votes
5answers
795 views
Do I have to explicitly call System.exit() in a Webstart application?
Recently I converted a Swing application to Webstart. The process was pretty straightforward, but I found that after I close all windows, my application's JVM did not terminate. The thread dump showed ...
5
votes
1answer
100 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
406 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 ...
5
votes
3answers
99 views
Can I invoking java web start in program?
I want to make use of the java web start advantage,but I dont want our customer face the java web start loading Screen,it seems ugly...and also customer maybe not install jre and the jre-install maybe ...
5
votes
1answer
2k views
Java Webstart Truststore SSL
Need some guidance.
I have java webstart app and I want it to connect to a server via SSL.just adding a property like:System.setProperty("javax.net.ssl.trustStore","my.keystore");But since a JAWS ...
5
votes
2answers
2k views
Java Webstart with parameters
Can I launch a Java WebStart application with a set of parameters just like an applet is configured with the <param> tags ?
Thanks
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
1k views
How to suppress the keystore password prompt when using Java Webstart with client auth?
Is there a way to suppress the password prompt when using Java Webstart with a https server that uses client authentication? I would like to do this, because the webstarted app runs on a touch screen ...
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
2answers
249 views
Why some times Java does not request for new versions of jar files?
Every time we update our Java application (Java client and Java server) we have the problems that some clients approx. 1% - 2% does not load the new jar files. This occur with applets and also with ...
4
votes
2answers
2k views
Dynamically load additional jar files using Web Start / JNLP
The Web Start Developers Guide states
All application resources must be retrieved from the JAR files specified
in the resources section of the JNLP file, or retrieved explicitly
using an ...
4
votes
5answers
512 views
Which do you prefer: Java Web Start, or Java Applets?
Which do you think is better as a programmer, and as a end user, and why?
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
915 views
java web start JAVA_HOME
I have an application that starts a Swing gui using java web start. The user has 4 versions of java 1.6 installed (1.6.0.3, 1.6.0.5, 1.6.0.7. 1.6.0.11)
Webstart is selecting java version 1.6.0.11 ...
3
votes
1answer
116 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
237 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
326 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
2answers
182 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
761 views
Java WebStart permission differences between XP and Vista/Windows 7
I am having an issue attempting to get a production Java WebStart application running on Windows Vista or on Windows 7. This WebStart application is trusted, and is supposed to have full privileges ...
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
4answers
891 views
why not use java web start instead of other RIA frameworks?
There are many RIA frameworks popping up (flex, extjs, gwt to name very few).
If my server is written in Java, why not use java web start?
The benefits I see: I get to program in a language that ...
3
votes
3answers
721 views
Does Java Web Start give a default program folder?
For Java Web Start is there a default place to store and access data related to my program? Or do I need to create a folder? For Java Web Start (assuming I don't get a program folder) is it standard ...
3
votes
1answer
951 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
2answers
1k views
Is it possible to use Java webstart execute .exe or dll?
I know java webstart is running under a secure sandbox. Is it possible to include a .dll/.exe in the jar (or have the webstart download it to the local machine) and then execute it (using Runtime.exec ...
3
votes
4answers
2k views
Is there a .NET equivalent of Java Web Start?
Is there a .NET equivalent of Java Web Start?
I want a one-click, from the web, lightweight install for a group of .NET assemblies and resources. Hopefully, the link would continue to keep the user ...
3
votes
3answers
2k views
How can I Java webstart multiple, dependent, native libraries?
Example: I have two shared objects (same should apply to .dlls). The first shared object is from a third-party library, we'll call it libA.so. I have wrapped some of this with JNI and created my own ...
2
votes
1answer
48 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
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
1answer
237 views
Java Webstart attempt to sandboxed jar as “Trusted-Library”
I'm trying to load a signed jar with an unsigned library through Webstart. However I get a "attempt to open sandboxed jar as Trusted-Library" error. I removed the all permissions setting from my jnlp ...
2
votes
2answers
130 views
webstart application logging permission denied
is it possible to use java.util.Logging and log to a file in a java webstart application?
I have the following logging code:
Handler fh = new FileHandler("myapp.log");
...
2
votes
4answers
191 views
Java vs C++ Qt : what choice for a gentle deployment? [closed]
I need a bit of wisdom from the stackoverflow.
I'm going to developp a GUI application which will process xml data via forms. I have selected two options : Java (swing or swt) or Qt.
I've already ...
2
votes
4answers
170 views
deploying OSGi project as Webstart using command line tools
How do I create a modular OSGi project that can be distributed with Java Webstart, using command line tools?
I've found instructions to export a set of OSGi plugins from eclipse. But instructions for ...
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
2answers
252 views
How to set Java DNS resolver cache TTL in Web Start application?
I am able to tell the Java DNS resolver not to cache like this:
java.security.Security.setProperty("networkaddress.cache.ttl", "0");
This works just fine when the program is run directly from the ...
2
votes
2answers
171 views
Deploying a project remotely using Java Web Start
I am trying to deploy a project remotely using Java web start. Here it is working for a single jar file. Can anyone tell me how to deploy this for multiple jar files and as I am using SQLite DB ...
2
votes
3answers
277 views
Java Web Start and Folders
We currently have an Java application that can be deployed on clients or run as a shortcut from the server. We have intermittently received ClassNotFound exceptions when running the JAR from the ...
2
votes
1answer
1k views
Looking for Webstart Maven Plugin sample application
I am looking for source code for a complete application that uses the Webstart Maven Plugin.
Any ideas?
2
votes
1answer
252 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
4answers
336 views
Best practice for creating a desktop app using Java WebStart
Hope I can explain this clearly. I am creating a desktop application that has dependencies on other external jar files. For example, my application is Spring-based so there are some SpringFramework ...
2
votes
1answer
169 views
Where does stdout go for a Java Web Start application?
I'm having troubles with my webstart application and would like to see stdout. I think it's throwing an exception... but I cannot see it since the console output is hidden somewhere.
How can I get ...
2
votes
1answer
496 views
Could not initialize class sun.security.mscapi.SunMSCAPI
We have client-server application and we launch the client application using java web start.
While trying to open client application, it first reads a token file from https url (for SSO) and later ...