Tagged Questions
-1
votes
2answers
87 views
How to prevent lost updates in Java application which uses hibernate?
How can I prevent the lost update issue in my Java web-start application? The scenario is if 2 users are accessing the same record and one person just make some modification and updates the DB. Other ...
2
votes
1answer
57 views
How to determine Java Webstart application runs Test vs Prod?
I have a feeling that there are still users pointing to the Test application. How can the user tell that they are on test vs prod? Right now they launch it from a shortcut on their desktop. Anything ...
0
votes
1answer
906 views
Deploying example Java Web Start application fails .
I am just starting to make a Java Web Start application . I am unable to deploy it correctly locally as i keep getting the following exception
I am following the following tutorials for JWS
a ) ...
0
votes
1answer
269 views
Java Web Start security warning despite using all-permissions and privileged action
I have set up JMS connections between my JBoss (4.2.2.GA) server and our J2SE client. The client runs via Java Web Start, and in the JNLP, I have the following:
<jnlp version="1.5+" ...
0
votes
1answer
363 views
Unable to set log level in a Java web start application?
Some logging levels appear to be broke?
I run a Java web start (which I will begin to call JWS from now on) application straight from a GlassFish 3.1.2.2 instance. The client has a static logger like ...
0
votes
0answers
140 views
Get Resource in Java Web Application using Netbeans 7.0
I have added resources to MyWebApp using Packaging Setting in Properties.
I have attached a image of the Package setting in Properties of Project.
Enumeration ...
4
votes
3answers
328 views
JNLP Error with JaNeLA
I have downloaded a jnlp file from Here and I have downloaded the JaNeLA from Here
When I analyze the file I have got following errors.
This is the text report
JaNeLA Report - version 11.05.17
...
1
vote
2answers
706 views
How to load TrustStore file from jar?
I'm consuming a web service secured with username authentification with symmetric keys via a java-web-start client. The problem is that my TrustStore is hard coded in the WSIT file, so authenfication ...
0
votes
1answer
39 views
How to add a library for JWS app.?
I'm deploying a swing client that require some external library to run.
How can I made them available to download via <jar href="library.jar"/> in the JNLP? Is there a configuration to make them ...
0
votes
1answer
556 views
jws application can't load swing-layout
I have an old application that use swing-layout and i have to make it usable via java webstart . It runs fine from netbeans but if I launch it using jws I got this error :
exception in thread ...
0
votes
1answer
729 views
Difference between classpath & java.library.path ? How to set it in linux & windows?
Here is my problem -
I get error pop up like - "no XXX in java.library.path" // Note: XXX is some .dll of API
Actually I am running .jnlp file; which starts java web start. Software installation ...
0
votes
1answer
158 views
JNLP load a jar from a relative address
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+"
codebase="**http://10.177.213.120:8080/Sample/**" href="sample-webstart.jnlp">
<information>
...
0
votes
1answer
149 views
Some libraries don't work when running JNLP file
Everything works in my Java EE project when I'm running it from Netbeans, but when I deploy it in Glassfish server and run downloaded JNLP file, some added libraries don't work.
Any ideas?
1
vote
1answer
136 views
Accessing services on web sites other than the web start clients own domain?
I am working on a web start client in java. I need to connect to other servers than from were the client is downloaded from. I thought I need to sign my jars but this ...
4
votes
1answer
1k 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 ...