Java applet manifest - Allow all Caller-Allowable-Codebase

后端 未结 16 2483
暗喜
暗喜 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:13

    To disable this "Security Warning" popup and other related popups using the Java 8 Update 45 JRE.

    Trusted-Library: true
    Caller-Allowable-Codebase: *.mycompany.com
    

    Note: security warning popup was not disabled with wildcards * and *.com.

提交回复
热议问题