Name: yyT116575 Date: 04/19/2001
java version "1.3.1-rc1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-rc1-b21)
Java HotSpot(TM) Client VM (build 1.3.1-rc1-b21, mixed mode)
Signed Applet is not recognized when using the plugin from SDK 1.3.1 RC 1
(this also happens with 1.3 and 1.3.1 beta).
Applet is signed with Thawte certificate and signed with signtool. The dialog
for granting permissions to the applet NEVER appears. The applet throws
exception when accessing secured ressources.
On my system ( nt4.0 sp5 ) I have installed the SDK1.3.1-rc1 and JRE1.3.1-rc1
(different downloads!). So in the plugin control panel I can choose which
installation to use.
JRE 1.3.1 in C:\Programs\JavaSoft\JRE\1.3.1 (this is JRE)
JDK 1.3.1 in C:\jdk1.3.1 (this is the SDK)
If I choose the first one I get the dialog which asks whether I want to
grant permissions.
If I choose the second one I do NOT get the dialog and the applet fails
with security exception. (see printout of java-console below)
The wrong behaviour is independent from browser (I tried netscape 4.7 and IE 5.5)
Java(TM) Plug-In: Version 1.3.1
Verwendung der JRE-Version 1.3.1-rc1 Java HotSpot(TM) Client VM
Home-Verzeichnis des Benutzers = C:\WINNT\Profiles\guelden
Proxy-Konfiguration:Manuelle Konfiguration
Proxy:http=164.27.224.146:8080;https=164.27.224.146:8080;ftp=164.27.224.146:8080
Proxy-?berschreibungen:*164.27.112.70,*www.telekom.de,*164.27.112.76
Warning: default mime table not found: C:\JDK13~1.1RC\lib\content-types.properties
security properties not found. using defaults.
----------------------------------------------------
c: clear console window
f: finalize objects on finalization queue
g: garbage collect
h: display this help message
l: dump classloader list
m: print memory usage
q: hide console
s: dump system properties
t: dump thread list
x: clear classloader cache
0-5: set trace level to <n>
----------------------------------------------------
Running...
Exception in System.getProperty("java.home")
java.security.AccessControlException: access denied
(java.util.PropertyPermission java.home read)
at java.security.AccessControlContext.checkPermission(AccessControlContext.java:272)
at java.security.AccessController.checkPermission(AccessController.java:399)
at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1278)
at java.lang.System.getProperty(System.java:560)
at EISFetch.start(EISFetch.java:13)
at sun.applet.AppletPanel.run(AppletPanel.java:358)
at java.lang.Thread.run(Thread.java:484)
Exception:java.io.FileNotFoundException: C:\JDK13~1.1RC\lib\flavormap.properties
(Das System kann die angegebene Datei nicht finden) while loading default
flavormap.properties file URL:file:C:\JDK13~1.1RC\lib\flavormap.properties
import java.applet.*;
public class EISFetch extends Applet {
public void start() {
System.out.println("Running...");
try {
String huhu=System.getProperty("java.home");
System.out.println("java.home is " + huhu + " whow it worked!");
} catch (SecurityException se) {
// If we are here, this means that EISFetch is not considered as secured
// or not run from within plug-in
System.out.println("Exception in System.getProperty(\"java.home\") ");
se.printStackTrace();
}
System.out.flush();
}
}
(Review ID: 120918)
======================================================================