JRE 1.5.0_03 Problem For Applet (Urgent)

Hi All;

I am ajava developer and developing enterprise applications. My problem is to learn how to run unsigned applet using Jre 1.5.0_03 in Internet Explorer. I want to do this because to avoid signing the class files after every changes. When I do some changes in class files i will export this one class files to the folder in my disk and connect the application from the web browser and run unsigned content properly.Is there a way without packagin and signing the whole code to do this operation in jre on internet explorer?

Thanks

ozalp

[568 byte] By [ozalpata] at [2007-10-2 18:48:46]
# 1

You should be able to run unsigned applets during development with the appletviewer, as it does very little security checking.

Alternatively, you can add the appropriate permissions to your development client machine that will allow the applet to run. Add something like one of these to the \<jre>\lib\security\java.policy file.

// Grant all applets the AllPermission property. This is dangerous and is only provided as an example.

grant {

permission java.security.AllPermission;

}

// Grant permissions to a particular URL (e.g., the URL containing your applet).

grant codeBase "http://your.url.here" {

permission java.security.AllPermission;

}

Java.policy documentation is here: http://java.sun.com/j2se/1.5.0/docs/guide/security/PolicyFiles.html

ChuckBinga at 2007-7-13 20:11:30 > top of Java-index,Desktop,Runtime Environment...
# 2
Thanks a lot. Your recommendation solved my problem.
ozalpata at 2007-7-13 20:11:30 > top of Java-index,Desktop,Runtime Environment...