0
votes
1answer
46 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
60 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 ...
2
votes
2answers
101 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 ...
0
votes
0answers
187 views

unable to load db2jcc.jar using jnlp

I have deployed an application using java web start and I have signed my file using the method explained in http://docs.oracle.com/javase/tutorial/deployment/jar/signing.html and the same jar is being ...
0
votes
2answers
418 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
36 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
297 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
0answers
132 views

java-web-start can't find swing-layout [closed]

I have an application client container that have to be deployed with java-webstart and it contains some old interface that uses swing-layout . When I try to use those internfaces I got this error: ...
0
votes
1answer
567 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
120 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
106 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?
4
votes
1answer
895 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 ...