避免显示我的 Java 小程序的双重弹出安全警报

发布于 2024-10-19 22:55:45 字数 278 浏览 1 评论 0原文

我创建了一个 java 小程序,通过 ftp 将文件上传到服务器,它使用 apache 的外部库,我签署了我的小程序,但是当我从浏览器启动小程序时,我收到两个安全弹出窗口,如何防止显示或显示只有一个?您好,谢谢,

这是示例链接: http://frx08.altervista.org/javaftp/

(第二个弹出窗口表示代码包含签名并且没有签名代码,但我不知道为什么..)

I created a java applet that uploads a file to a server via ftp, it uses an external library by apache, I signed my applet but when I start the applet from the browser I get two security popups, how do I prevent to show or show only one? hello and thanks

this is the example link:
http://frx08.altervista.org/javaftp/

(the second popup says that the code contains signed and not signed code but I don't know why..)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与酒说心事 2024-10-26 22:55:45

要么:

  • 确保所有代码都未签名,也许使用自 6u10 起小程序可用的 javax.jnlp。 [最佳途径]
  • 确保所有代码都经过签名(包括资源文件)。
  • “受信任的库”功能允许签名且受信任的库与不受信任的代码一起运行。安全地编写库可能非常困难。

Either:

  • Make sure all your code is unsigned, perhaps using javax.jnlp available to applets since 6u10. [best route]
  • Make sure absolutely all your code is signed (and this includes resource files).
  • The "Trusted-Library" feature allows a signed and trusted library to run with untrusted code. It can be very difficult to write the library securely.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文