Hi there, was wondering if anyone had experienced similar problems with Java Web Start ActiveX. I have inherited the following client side code to determine for Windows and Netscape if Java Web Start has been installed:
On most occasions this works fine. But for one NT box where the administrator installed JWS, any other user firing up the browser appears not to have JWS installed. This looks like some sort of registry or permission problem. Has anyone else seen this as well?
Thanks for any advice, Neil
Code:
<script language="Javascript">
var javawsInstalled = 0;
isIE = "false";
if(navigator.mimeTypes && navigator.mimeTypes.length) {
x = navigator.mimeTypes['application/x-java-jnlp-file'];
if(x) {
javawsInstalled = 1;
}
}
else {
isIE = "true";
}
</script>
<script language="VBScript">
on error resume next
If isIE = "true" Then
If Not(IsObject(CreateObject("JavaWebStart.IsInstalled"))) Then
javawsInstalled = 0
Else
javawsInstalled = 1
End If
End If
</script>
On most occasions this works fine. But for one NT box where the administrator installed JWS, any other user firing up the browser appears not to have JWS installed. This looks like some sort of registry or permission problem. Has anyone else seen this as well?
Thanks for any advice, Neil