What does the Java Applet security warning “JAR file manifest does not contain the Permissions attribute”mean?

后端 未结 4 734
情深已故
情深已故 2021-02-05 05:14

I have a Java Applet which needs access to the local filesystem of the client. I have created a simple certificate for my own (it is NOT certified by Verisign,Commodo, ...). I s

4条回答
  •  难免孤独
    2021-02-05 06:05

    I've met this warning while updating the signature on a pre-existing applet (a component that interfaces a user smartcard, and so to work correctly requires to be signed with a "strong" certificate).

    Adding also the codebase attribute, e.g: "Codebase: xyz.com" actually makes the warning disappear (note that the original warning text was refering, as in this case, to issues related to the "Permission" attribute not the codebase one...).

    It's probably a bug in the jre?

提交回复
热议问题