All Questions
Tagged with deployjava java
18 questions
-4
votes
1
answer
106
views
Regarding to use deployjava.js file [closed]
if any problem to use deployjava.js in my applictaion.
Is it open Source
4
votes
1
answer
865
views
Java WebStart: How to fix deployJava.js to ignore Chrome 42 and assume that java is installed
I've read the information available about Chrome 42 and I'm looking to work around the issue in order to allow the user to download my jnlp file when working from Chrome 42.
The question is, how do I ...
0
votes
1
answer
740
views
Getting JRE version if Java is not installed in Safari using deployjava.js
I am using deployjava.js to check whether java or JRE installed in system or not. I create a script to check JRE version and java installed in system or not. I tested it in Safari browser in my Mac, ...
1
vote
0
answers
396
views
Use deployJava.js to check for latest JRE version for web applet
I like to use the deployJava.js to check which JRE version installed in system. When I read documentation of deployjava.js it seems that it will work perfectly. But it's not working exactly.
I tested ...
0
votes
0
answers
453
views
deployJava.js redirects to Java.com even JRE is present in machine
Our application has an applet in a web page. To render it we used deployJava.js (recommended approach by Oracle). But it is redirecting to Java.com, even correct (minimum) JRE version is installed in ...
1
vote
1
answer
204
views
deployJava js forces to update jre 1.6 to 1.7+
I have a java web start application which runs from a web page. I use deployJava.js to detect java installation on user's system. Minimum java version required is 1.6. However even if user has only 1....
3
votes
1
answer
3k
views
Detect java version using deployJava.js ,pops up java upgrade menu
I have a need to know the java version installed on client machine, have come up with the solution here
How to write JavaScript function to check JRE version
When I tried, got with the answer:
...
0
votes
1
answer
641
views
Disable redirect to java.com on mobile when using deployJava.js
I'm using Java Deployment Script on my web application using this code.
<script src="https://www.java.com/js/deployJava.js"></script>
<script>
var attributes = {
code:'...
7
votes
3
answers
12k
views
deployJava.js not detecting JRE in IE 11
I'm using deployJava.js to include applets like so:
<script>
var attributes = {
name:'ForrestGump', id:'ForrestGump',
codebase:'java/', code:'ForrestGump',
...
0
votes
1
answer
50
views
How different applets are distinguished by web-browsers?
If the user visits the website and install the applet, does a visit to another website, which contains the same applet, would use the previously installed applet?. Or, does it install the applet as a ...
1
vote
3
answers
704
views
Java Installed vs Java Enabled in browser
Is there a way to detect if java is installed on your machine or if java is disabled on the browser. We use java applets in our application but before the applet is loaded we use "deployJava.js". ...
1
vote
2
answers
1k
views
JavaScript to Java Applet using DeployJava.js to run commandline
I am pretty new to Java. I want to create a Java Applet that will allow my JavaScript to pass a commandline to the Java Applet. This will only ever be run on my development machine - no need to remind ...
0
votes
1
answer
210
views
Invoking Applet Methods - Firefox 12 bug
I have one problem with Firefox 12 (newer Firefox works well, and another browsers works well too).
In Firefox 12 MyApplet is undefined.
In another browsers everything works well.
In newer Firefox ...
0
votes
1
answer
2k
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 ...
2
votes
1
answer
1k
views
deployJava.js adds an <embed> element to head area
I have a site where I am using Java applets and have included deployJava.js load tag in the head area of the page. However when I see resulting HTML in Chrome debugger this script breaks my head ...