Java applet manifest - Allow all Caller-Allowable-Codebase

后端 未结 16 2485
暗喜
暗喜 2020-11-28 02:10

As of Java 7u45 an applet will display a warning message (even if signed with a trusted cert) if a webpage tries to interact with it via javascript and that page isn\'t list

16条回答
  •  温柔的废话
    2020-11-28 03:03

    My findings are the same:

    This prevents warnings with Java 7u21 - 7u40:

    Manifest-Version: 1.0
    Trusted-Library: true
    

    This exclusivly prevents warnings with Java 7u45:

    Manifest-Version: 1.0
    Application-Library-Allowable-Codebase: *
    Caller-Allowable-Codebase: *
    

    Mixing both won't work in 7u45.

    Now what? Did anyone find a way to allow SIGNED applets with "all-permissions" to run without warnings in both JRE-versions?

    What the hell is wrong with oracle?

提交回复
热议问题