test
test

Reputation: 18200

Java Applet Viewer - Disable Security Manager

I am using an applet and I don't want to sign it right now so how do I disable the security manager from the applet viewer?

That way I can work faster. :)

Upvotes: 2

Views: 3034

Answers (1)

Alain O'Dea
Alain O'Dea

Reputation: 21686

appletviewer -J"-Djava.security.policy=all.policy" writeFile.html

From http://java.sun.com/developer/technicalArticles/Security/applets/

Upvotes: 5

Related Questions