Tagged Questions
0
votes
0answers
36 views
JavaFx application in web browser : Jar working but JNLP / HTML doesn't
I have a javafx application, i am using netbeans as IDE. If i use the configuration stand alone the program is working without any trouble. But if i choose Run in browser i have a Runtime Error and ...
1
vote
1answer
52 views
Java Applet does not start properly when Max Heap Size is set
I have been struggling with developing an applet recently. I have been trying to launch it with JNLP and the "deployJava.js" script. The issue is that this is a memory intensive applet I am developing ...
0
votes
0answers
22 views
Take version name dynamically while building the application
Here is my Code:
This is my Config file where i want to read this two tag value like (*wnc_boot_ver,*wnc_fw_ver) dynamically while building the application i will put this version value in jnlp jar ...
0
votes
0answers
66 views
jnlp java-vm-args=“-Dfile.encoding=UTF-8” doesn't work
Below didn't work. When I press 's' in java console, it still prints file.encoding=MS949.
<?xml version="1.0" encoding="UTF-8"?>
<jnlp href="pkitoolkit.jnlp">
<security>
...
0
votes
0answers
64 views
Applet does not cache jar files
I'm having issues identifying why a few heavy .jar files are not being cached at the client side.
The applet runs fine, but it lazy-downloads the heavy jar libs on every run (specifically ...
0
votes
0answers
32 views
Converting .jnlp
Is it possible to convert a .jnlp file to something that can be viewed on iOS? I'm looking to run this java applet in a browser or create a basic app that can load this for iPad.
1
vote
1answer
71 views
mysql result is not correctly written to file using java applet
I am trying to do an example to write to a file the database records using java applet. But the problem is after running the applet i'm seeing the file is created but it contains garbage data. I've ...
0
votes
1answer
93 views
deployJava.runApplet is not working
Am using applet inside my "Extjs UI framework". If i called below "applet.js" file using "index.html", its working fine.
But, If i called inside any script, other than ".html file", then its not ...
0
votes
1answer
99 views
Java applet loads on local test server but not in production
I have a Java applet running on my Linux PC using httpd, which is working fine, but when I move the applet to our company server nothing happens after I allow the browser to run Java.
Index.html:
...
0
votes
1answer
49 views
Adding lower restriction to Applet / Webstart
I have a simple Applet application and my code creates ImageIcon objects from the same url from the Applet. When I run the application, I get a message about unrestricted access, it scares the user.
...
0
votes
0answers
88 views
Browser ignore my JVM parameters in JNLP
I try to test the JVM parameters with this JNLP file :
<jnlp spec="1.0+" codebase="" href="">
<information>
<title>Test Applet</title>
<vendor>D2D ...
1
vote
1answer
157 views
Passing parameters from JNLP to JavaFX2
I'm trying to pass a parameter defined in a JNLP file to my JavaFX 2 app. I thought this would be straight forward but I do not seem to able to get it to work. I've read alot already on the topic but ...
5
votes
4answers
106 views
Odd number of non-english characters get broken in windows-chrome
I developed jnlp applet which prints out the user input.
When I put odd number of non-english characters(eg: chinese), chrome browser prints out the last character as question mark.
input : 가
output ...
1
vote
0answers
65 views
launch java applet with jnlp but with unspecified width and height
I have an applet and would like to launch it via jnlp. Currently it launches, but the problem is in the width and height. If I launch the applet manually (java -jar applet.jar), I don't specify a ...
0
votes
0answers
72 views
Deploy Applet with JNLP: relative path problems
I'm looking for help deploying a Java Applet with JNLP, with which I have no experience.
My problem seems to be that I am not naming the class path for my jar/applet files correctly in the jnlp ...
2
votes
3answers
298 views
Set default JVM parameters to be used for applet launch
I am trying to remote debug a Java applet, but I cannot seem to get the -agentlib:jdwp JVM argument to work. I have tried specifying it in the Java control panel for the particular JRE used, and I ...
1
vote
1answer
214 views
During Java applet startup, what does “Running JVM args match the secure subset” mean?
I am trying to run remote debugging on a Java applet, but cannot get the applet to connect to the debugger (Eclipse) nor will it suspend. During startup, I get the following:
...
Match: digesting ...
2
votes
2answers
189 views
Deployment Toolkit for Java applets: how to avoid the redirect when no JVM is installed
I have created an applet; it is deployed using the Deployment Toolkit as below (the URLs are fake):
<script type="text/javascript"
...
2
votes
1answer
243 views
Deployed JNLP applet cannot find library: Incompatible magic value 1130458734
I am trying to deploy my applet using JNLP. I have tried using Eclipse Run Jetty Run plugin and it worked okay. But now with deployment at a real web server I am really stuck.
My jnlp file sketch is ...
5
votes
1answer
281 views
Can't call JNLP-deployed applet code from JavaScript
This is literally my first question about Java, so bear with me.
I built a stupid simple applet class called HelloWorldApp.class from this code:
import java.applet.Applet;
class HelloWorldApp ...
0
votes
3answers
202 views
Converting Java Desktop Application to Web using Applet or Java Web Start
I know that I can convert a Swing application to an Applet or a Java Web Start application. Is it possible to do the same with an application that's not Swing, say Qt using Java?
What I'm really ...
0
votes
1answer
238 views
UnsatisfiedLinkError + JNLP + Applet + DLL
I have created a JNLP to load the applet and some native DLL files. Following are the codes of each components
JNLP
<?xml version="1.0" encoding="UTF-8"?>
<!-- href attribute contains ...
0
votes
0answers
76 views
Run Jnlp file directly with Sun's HttpServer
I have following problem: I am trying to run my JAR file with com.sun.net.httpserver, but it doesn't work.
Main.class from JAR which starts server at port 8000 contains something like this:
...
3
votes
1answer
239 views
Applets launched via Java Web Start (JNLP) launches twice
I am launching an applet via JNLP and Java Web Start. My problem is that when the page is loaded, two JVMs will launch with two Java console popups and two "Do you want to run this application?" ...
1
vote
1answer
58 views
JNLP showing old version of applet
I have an applet on a webpage being deployed with JNLP. My problem is that it is loading the cached applet instead of the newly uploaded one.
I have tried:
putting <update check="always" ...
1
vote
2answers
647 views
JNLParseException [ Could not parse launch file. Error at line 56.]
I am trying to load an applet using jnlp and deployjava.js but I could not get my head around this problem .Stacktrace as follows:
JNLParseException[ Could not parse launch file. Error at line 56.]
...
1
vote
1answer
106 views
Plone CMS with JNLP applet
I need to run an applet into a Plone application.
I've developed the applet that runs fine in a test html page on my localhost, but since I'm a Plone/python/zope noob (java developer here) I can't ...
3
votes
1answer
131 views
Automating a JNLP Application using Java Agents
I'm trying to automate some operations in a jnlp application using a Java Agent that gets into the "VM instance of the app" and then create a new instance of my Swing GUI(and my class for automation).
...
0
votes
0answers
63 views
JavaWebstart JNLP windows on windows task bar?
I developed JNLP GUI using jgoodies.
The GUI appears when I connect to the website.
But the GUI window is not on the windows task bar(in the bottom side).
The code is like below.
<script ...
0
votes
0answers
157 views
Applet. UnsatisfiedLinkError when loading native .dll
I have an applet with .jnlp file, and I want to use native .dll inside applet. So I inserted native .dll in root of .jar and in jnlp-file file I added this line:
<nativelib ...
4
votes
1answer
176 views
Adding an applet to a website
First time posting here. I made a simple calculator program using java and I am trying to put it onto my website. From what I've gathered from previous help posts is that I need to create a JApplet ...
1
vote
0answers
126 views
Where did Apple's JRE 1.6 store applet runtime parameters?
We needed to roll back from Oracle's JRE 1.7 to Apple's JRE 1.6 because of the copy/paste regression. We followed these instructions from apple:
http://support.apple.com/kb/HT5559
That mostly ...
0
votes
1answer
108 views
Seamless data transfer between the system-wide clipboard and the sandbox inside of a Java applet via JNLP - possible?
I am currently trying to implement the ClipboardService that's provided by the rather new JNLP API to access the system-wide clipboard inside of an Java applet that I launch via JNLP. What I want to ...
0
votes
2answers
227 views
Interactive terminal emulation in JSF application
We are developing (basically data-mining) web application backed by JSF(Primefaces)/Spring/Hibernate. For next step, we have to create some sort of terminal emulation so the web application can SSH ...
0
votes
1answer
420 views
Safari Issue: java.lang.ClassFormatError: Incompatible magic value 1013478509 in class file
Facing issue invoking java applet from my jsf page using JNLP file on Safari browser in Windows:
java.lang.ClassFormatError: Incompatible magic value 1013478509 in class file
I am able to invoke the ...
1
vote
2answers
1k views
Maven. Set java.library.path
How I can set java.library.path in applet using Maven? Usually we can set it by passing parameters to JVM: -Djava.library.path=path/path2. But how I can cause applet to load native libs from ...
1
vote
1answer
842 views
Load .DLL with applet and use it on client
Can I load .dll from server to client within applet, and then call methods of loaded .dll (using JNI) on client side?
0
votes
0answers
123 views
UDP packet send/receive from Browser
I want to measure ping of server which replies to UDP packets.
One way i have found out is by making Java applet which sends a packet.
But can it receive packet and display on Website(php) .
I dont ...
0
votes
3answers
468 views
Applet, JNLP. Force update jar files
How I can force updating of my jar files when client open applet application? Jar files always cached in client machine. And I always need to clear cache using Java Control Panel.
0
votes
1answer
963 views
Increase the heap size of a Java applet
I ported one of my programs from a standalone Java application to a Java applet. The application processes large image files so I need more heap space so load them into the memory. The images are then ...
0
votes
0answers
168 views
Unable to save using JNLP
I am trying to save applet using JNLP in local system but getting the exception
Exception in thread "AWT-EventQueue-2" java.lang.NullPointerException
Below is the snippet
public void ...
1
vote
1answer
344 views
how to run java fileservice applet in eclipse?
I have to extend an existing applet by adding it the ability to write to a local file.
I tried the file service demo at http://pscode.org/jws/api.html#fs and found it was what we needed.
But I have to ...
0
votes
0answers
276 views
Launching applet in HTML page
I have a problem launching a Java Applet from html page. The html page deploys the jnlp file. When i launch the jnlp alone, the applet loads fine, but when i launch the jnlp within html page i get ...
1
vote
2answers
523 views
Get java applet to run in browser using jnlp
I have a very simple java applet that I took from here: http://docs.oracle.com/javase/tutorial/deployment/applet/subclass.html
import javax.swing.JApplet;
import javax.swing.SwingUtilities;
import ...
3
votes
1answer
430 views
Clarifications over java applet warnings
I'm working on deploying a Java applet over JNLP. The functionality of the Applet works as expected, my problems lies within the Security Warnings displayed during run time. I've searched extensively ...
1
vote
0answers
305 views
JNLP classpath nested folders
I'm running into some issues with deploying a JNLP applet.
For some reason if I don't put all the necessary files into the same directory as the JNLP file, Java complains that it can't find it.
...
2
votes
1answer
1k views
Class not found Exception when launching Applet using JNLP
I've run into a problem when trying to launch a jar file using JNLP. We've previously launched the applet without JNLP without any problems. We want to launch three different jars who are kept in the ...
1
vote
2answers
1k views
JNLP file always downloaded from cache even if the file is changed in the server
We got performance hit in one of the Java-Applet based web application. So we implemented JNLP concept to improve applet loading.
As per JNLP,
The JAR files will be downloaded to client machine for ...
2
votes
1answer
90 views
Having trouble displaying an Applet
I am attempting to display a working applet in Firefox (and will also want to display it in IE). I am using the following in my HTML:
<script ...
2
votes
3answers
956 views
How to set preferIPv4Stack property for JNLP app?
I need to set java.net.preferIPv4Stack=true to an app started via JNLP (javaws and applet)
Tried those, without luck...
<j2se ...java-vm-args="-Djava.net.preferIPv4Stack=true" />
<property ...


