How can I detect the Java runtime installed on a client from an ASP .NET website? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T17:49:22Zhttp://stackoverflow.com/feeds/question/491541http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website2How can I detect the Java runtime installed on a client from an ASP .NET website?Carl2009-01-29T13:14:57Z2009-02-27T22:42:30Z
<p>I have an ASP .NET website that hosts a Java applet. The Java applet requires version 1.6 Update 11 of the Java runtime.</p>
<p>How can I detect that a client has the appropriate runtime installed so that I can display an informative message if they do not?</p>
<p>Thanks,</p>
<p>Carl.</p>
<p><strong>EDIT:</strong> The solution must be platform independant.</p>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/491558#4915584Answer by Andreas Grech for How can I detect the Java runtime installed on a client from an ASP .NET website?Andreas Grech2009-01-29T13:22:57Z2009-01-29T13:22:57Z<p>This page describes how to and lists some plugins that will allow you to detect Java with JavaScript: <a href="http://www.pinlady.net/PluginDetect/JavaDetect.htm" rel="nofollow">http://www.pinlady.net/PluginDetect/JavaDetect.htm</a></p>
<p>Other than that, try out this snippet as well:</p>
<pre><code>if (navigator.javaEnabled()) {
//Java is enabled
}
</code></pre>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/528814#5288140Answer by SquidScareMe for How can I detect the Java runtime installed on a client from an ASP .NET website?SquidScareMe2009-02-09T16:21:16Z2009-02-09T16:36:20Z<p>Maybe this script will help. This is Windows-only, though.</p>
<pre><code><script language='javascript' type='text/javascript'>
var javaVersion;
var shell;
try
{
// Create WSH(WindowsScriptHost) shell, available on Windows only
shell = new ActiveXObject("WScript.Shell");
if (shell != null)
{
// Read JRE version from Window Registry
try
{
javaVersion = shell.regRead("HKEY_LOCAL_MACHINE\\Software\\JavaSoft\\Java Runtime Environment\\");
}
catch(e)
{
// handle exceptions raised by 'shell.regRead(...)' here
// so that the outer try-catch block would receive only
// exceptions raised by 'shell = new ActiveXObject(...)'
alert('error reading registry');
}
}
}
catch(e)
{
// Creating ActiveX controls thru script is disabled
// in InternetExplorer security options
// To enable it:
// a. Go to the 'Tools --> Internet Options' menu
// b. Select the 'Security' tab
// c. Select zone (Internet/Intranet)
// d. Click the 'Custom Level..' button which will display the
// 'Security Settings' window.
// e. Enable the option 'Initialize and script ActiveX controls
// not marked as safe'
activeXDisabled = true;
}
// Check whether we got required (1.6) Java Plugin
if ( javaVersion != null && javaVersion.indexOf("1.6"))
{
pluginDetected = true;
alert('it is installed!')
}
if (pluginDetected)
{
// show applet page
}
else if (confirm("Java Plugin 1.6 not found"))
{
// show install page
alert('not found')
}
else
{
// show error page
alet('error')
}
</script>
</code></pre>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/528899#528899-1Answer by Ed Blackburn for How can I detect the Java runtime installed on a client from an ASP .NET website?Ed Blackburn2009-02-09T16:38:46Z2009-02-09T16:38:46Z<p>Copy and paste into your browser address bar to check: </p>
<p>javascript:alert(navigator.javaEnabled())</p>
<p>Works in Mozilla (FF3) and IE7. (x64)</p>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/529656#5296565Answer by paxdiablo for How can I detect the Java runtime installed on a client from an ASP .NET website?paxdiablo2009-02-09T19:57:54Z2009-02-09T20:08:06Z<p>My approach would be to use the JavaScript <code>navigator.javaEnabled()</code> to check if there is <strong>some</strong> Java version available.</p>
<p>Then you can use <code>System.getProperty("java.version")</code> from within a Java applet itself. That should be enough to get you the version information, such as <code>1.6.0_03</code>.</p>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/536625#5366250Answer by Dennis Cheung for How can I detect the Java runtime installed on a client from an ASP .NET website?Dennis Cheung2009-02-11T12:45:46Z2009-02-11T12:45:46Z<p>If the solution must be platform independent. I'll exclude all solution provided by javascript.</p>
<p>You can write a very simple Applet which support by the oldish Classic VM. Let the applet detect the JRE version, and display messsage.</p>
<p>If you accept Javascript, you may also interest to <a href="http://java.sun.com/developer/technicalArticles/JavaLP/javawebstart/AutoInstall.html." rel="nofollow">this article</a> which is about auto-installer for WebStart applications. </p>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/538444#5384444Answer by Ramesh for How can I detect the Java runtime installed on a client from an ASP .NET website?Ramesh2009-02-11T19:42:32Z2009-02-11T19:42:32Z<p>The link below details on the deployment tips for java apps.</p>
<p><a href="http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html" rel="nofollow">http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html</a></p>
<p>Quoting from the link</p>
<blockquote>
<p>Deployment Toolkit
To avoid browser compatibility issues, the Deployment Toolkit (<a href="http://java.com/js/deployJava.js" rel="nofollow">deployJava.js</a>) provides JavaScript functions that automatically generate HTML required to deploy applets and Java Web Start applications. Developers should invoke these functions to deploy their solutions in a consistent fashion across various browsers. </p>
</blockquote>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/542984#5429841Answer by achinda99 for How can I detect the Java runtime installed on a client from an ASP .NET website?achinda992009-02-12T20:00:16Z2009-02-12T20:00:16Z<p>If you don't mind using a basic java applet that requires a much older version to run, you could use <a href="http://www.javatester.org/version.html" rel="nofollow">this article</a> and continue based on that result.</p>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/544872#5448720Answer by Gili for How can I detect the Java runtime installed on a client from an ASP .NET website?Gili2009-02-13T06:00:44Z2009-02-13T06:00:44Z<ol>
<li><p>Use <a href="http://java.com/js/deployJava.js" rel="nofollow">deployJava.js</a> function getJREs() to build a dynamic page depending on the user's Java version.</p></li>
<li><p>Use <a href="http://cowwoc.blogspot.com/2008/12/tracking-java-versions-using-google.html" rel="nofollow">http://cowwoc.blogspot.com/2008/12/tracking-java-versions-using-google.html</a> to track the Java version being used by your web visitors using Google Analytics.</p></li>
<li><p>Bonus step: use the source-code from <a href="http://code.google.com/p/jre-analytics/source/browse/trunk/jre-analytics.js" rel="nofollow">step 2</a> as an example of how step 1 should be implemented.</p></li>
</ol>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/549739#5497390Answer by Matias for How can I detect the Java runtime installed on a client from an ASP .NET website?Matias2009-02-14T20:28:34Z2009-02-14T20:28:34Z<p>Just copy amd paste this code in your browser address bar!
Check if it is useful for you.</p>
<pre><code>javascript: for(i = 0; i < navigator.plugins.length; i++) alert(navigator.plugins[i].name);
</code></pre>
<p>You need to obtain the position of Java in the plugins array and maybe you can check the versions with a regular expression or something. You could take a look to the plugin javascript object.</p>
<p>Regards!</p>
http://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/552260#5522601Answer by Andrew Arnott for How can I detect the Java runtime installed on a client from an ASP .NET website?Andrew Arnott2009-02-16T04:22:49Z2009-02-16T04:22:49Z<p>Although most of the answers so far are all around detection on the user agent (browser) itself, it sounds like from your mention of ASP.NET that you'd like to make this detection happen on the server-side. If so, you have a couple of options. </p>
<p>First you can sniff the HTTP request headers coming from the user agent. A computer and browser with Java installed will usually include a header providing a hint of this to the server that you can pick up on. Here are some useful links on this approach:
<a href="http://www.developershome.com/wap/detection/" rel="nofollow">http://www.developershome.com/wap/detection/</a>
<a href="http://search.cpan.org/~gwyn/HTTP-Browscap-0.03/Browscap.pm" rel="nofollow">http://search.cpan.org/~gwyn/HTTP-Browscap-0.03/Browscap.pm</a></p>
<p>The other option you have is to send down javascript to the user agent to perform the detection using one of the techniques in the other answers in this question and then use ajax callbacks to tell the server what you discovered.</p>