Tagged Questions
In computing, 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 Internet using a web browser.
15
votes
2answers
227 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 ...
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 ...
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
2answers
549 views
Java Web Start Authentication Option
Ok, before you think that this is a simplistic request and that it must be out there; I've done about 2-3 hours of searching with no results. Is there a way to pass authentication information through ...
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 ...
2
votes
2answers
310 views
Java Web Start keeps asking to authenticate
I developed a Java Web Start app that lies on a web server based on HTTP security.
Once I log in to the web-page for launching my Java Web Start application, the app is asking me again to ...
2
votes
1answer
438 views
AWS S3 Java SDK - Download file help
The code below only works for downloading text files from a bucket in S3. This does not work for an image. Is there an easier way to manage downloads/types using the AWS SDK? The example included ...
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
168 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
2answers
313 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?
2
votes
1answer
144 views
How to start a java-web-start application and wait until it exits?
I just found out that javaws -wait doesn't do what is supposed to do on Windows. It will return before the aplication finishes.
This bug is more than 5 years old and closed as won't fix
6281477, so ...
2
votes
1answer
138 views
How can I RUN JAVAWS command line in text-mode Linux environment?
Hi
I want to RUN JAVAWS command line in text-mode Linux environment and I have not X.
Is it possible?
Tanx
2
votes
1answer
675 views
WCF client encrypt message to JAVA WS using username_token with message protection client policy
I am trying to create a WCF client APP that is consuming a JAVA WS that uses username_token with message protection client policy. There is a private key that is installed on the server and a public ...
2
votes
1answer
575 views
Java Webstart Options
I am using javaws to run an application in OS X 10.5.7, Java(TM) SE Runtime Environment (build 1.6.0_13-b03-211), and it seems that the command line arugments are broken in os X. I run the following ...
1
vote
2answers
107 views
Java Web Start vs. Java Applet
I'm working on a Java application which I want to be available over the internet. However, some requirements put me in a difficult situation. That's why I would appreciate some input of experienced ...
1
vote
1answer
27 views
How to get the status of a javaws launch in Web Server
I'm trying to launch a JNLP file from my struts action, on clicking a link on a JSP. How can i get to know that the launch is successful on client side or is there any failure? If it is not successful ...
1
vote
2answers
88 views
Cannot run two instances of java webstart
I am unable to run more than one instance of java webstart at any given time.
For example, I am unable to run both the production & QA instance of an application at once, both of which are ...
1
vote
0answers
105 views
Can JNLP API load resources during runtime?
is there a way to load JAR resources into an app during runtime? JNLP API ( http://download.oracle.com/javase/6/docs/jre/api/javaws/jnlp/ ) is great because i have custom management of resources, but ...
1
vote
1answer
231 views
Versioning in Java Web Start
does someone know what to specify in the JNLP file so that JARS won't be downloaded all the time, but only when there's a new version on the server side? I know i can specify: version="1.5" for ...
1
vote
1answer
221 views
Webstart application is very slow when server is down
What I have:
Tomcat server which contains jnlp file with all required libraries and which could be turned off for some reason
Very fat swing application which requires all securities permissions
...
1
vote
1answer
348 views
Add header to SOAP message
I need add custom soap header, like login
I do it in way like this
class Foo implements SOAPHandler<SOAPMessageContext> {
public boolean handleMessage(SOAPMessageContext context) {
...
1
vote
0answers
93 views
Customized error message on java version mismatch while launching webstart
On launching a jnlp, with <jnlp spec="1.5+"> and <j2se version="1.5+" href="..."/> using javaws from 1.4 we will be getting error like jnlp specification 1.5 is not supported and only 1.0 is ...
1
vote
0answers
60 views
Can I prevent Java Web Start from modifying the system path?
I have noticed that when I start an application using javaws.exe pathtojnlpfile.jnlp, javaws appends the JRE's path to the end of the system's %PATH% environment variable.
Is there any way I can ...
1
vote
1answer
541 views
Java Web Start JAVAWS command line arguments
I need to activate webstart by passing command line arguments in my code. I have seen Passing command line arguments to javaws (Java WebStart) executable. but could not get the solution which can take ...
1
vote
1answer
345 views
maven, wsgen and dynamic url
After implementing a test solution described here :
http://stackoverflow.com/questions/2158175/use-maven-to-trigger-a-wsgen-wsimport-in-a-row-using-wsdllocation
I wonder if there is a way to ...
1
vote
2answers
196 views
Cannot remove JAR from cache
I have created a new JAR but I cannot see my changes made. It seems like its caching the old JAR.
When I do a javaws -viewer I see the date modified column for that JAR as April 7, which is old. ...
1
vote
4answers
2k views
What is causing the problem - I am not able launch JNLP aaplications using “Java Web Start”?
Up until recently, I was able to launch/open JNLP files in Firefox using Java web start.
Don't know what happened all of a sudden JNLP files stopped launching, a splash screen appears saying Java ...
1
vote
2answers
190 views
Java webstart Security
What is the option in Java Webstart command line to skip the security check? This is for testing purposes only.
javaws myfile.jar
0
votes
1answer
39 views
Finding the jnlp file that started a Java application (Java Web Start)
Background
I've made a Java application that is started by downloading a dynamically generated .jnlp file. What the application does is not really relevant, but its a screenrecorder. The user will ...
0
votes
0answers
159 views
java web start problems with glassfish
For the last few days I have been trying to work through a simple java ee example with glassfish. Ive been developing a client application and soon I want to integrate it into an enterprise framework.
...
0
votes
1answer
76 views
Web Start SSL pre-application launch jar download
I am launching a web start application over https. Before the application launches, I get a popup window "Request Authentication - Identification required. Please select certificate to be used for ...
0
votes
1answer
53 views
Is it possible to turn OFF Java Web Start?
Is it possible to turn off Java Web Start? I'm trying to test if my browser can detect if javaws is on a machine.
0
votes
1answer
125 views
Get IP address in JBoss Web Service
I developed a java class with an only method and turned into web service (JBOSS) using JBossWS. I would like to get the IP address of the client who started the request. (I'm not using jsp)
public ...
0
votes
0answers
47 views
How to see the Xml Parser log of a webservice call in Silverlight
I am working on a silverlight client that access a java JAX - RPC service. When calling a webmethod, I find that one of the properties is not filled with data in the response.
I verified the property ...
0
votes
0answers
127 views
BindException - Address already in use -Possible Issue with Javaws and insane amount of ports opening netstat
I have a javaws program. It in itself calls another javaws periodically, and possibly many times based on its user input. I keep getting errors from javaws unable to load, which I believe is because ...
0
votes
1answer
935 views
Build a WS with Spring
I need to create a WS with Spring 3.0.4.RELEASE to run in a Tomcat with Axis2. I'm following this doc: ...
0
votes
1answer
616 views
Where is the source code for <jdk>/jre/lib/deploy.jar?
Where is the source code for /jre/lib/deploy.jar?
I have the source code for other jars like rt.jar (in /src.zip) but not deploy.jar.
I need it to debug webstart.
I'm using 1.6 on Windows if that ...
-1
votes
1answer
37 views
Can i use Webservice along with My Servlet Server coding?
I know this is a Rookie question
Let me explain. My requirement is..
I want to build an internet based android app .. which stores and fetches data from a hosted server
while considering about ...