Eclipse plugin 在使用jersey的eclipse扩展插件中抑制小程序警报

Eclipse plugin 在使用jersey的eclipse扩展插件中抑制小程序警报,eclipse-plugin,applet,jersey,knime,javapolicy,Eclipse Plugin,Applet,Jersey,Knime,Javapolicy,我已经为KNIME(一个基于eclipse的软件)编写了一个REST客户端插件。我把泽西当作图书馆 一切正常。但是,如果我发送客户端请求,会弹出一个小程序警报对话框,询问我是否要允许、不允许或停止小程序。这个对话框很烦人,尤其是当你想提交多个请求时。 我怎样才能摆脱它 到目前为止,我所发现的只是在下载过程中向.jar文件添加内容的反病毒软件,调整maven服务器和ant构建的参数。然而,我已经在我的机器上创建了这个插件,并且我正在本地运行目标REST服务器(它基于python) 理想情况下,我想

我已经为KNIME(一个基于eclipse的软件)编写了一个REST客户端插件。我把泽西当作图书馆

一切正常。但是,如果我发送客户端请求,会弹出一个小程序警报对话框,询问我是否要允许、不允许或停止小程序。这个对话框很烦人,尤其是当你想提交多个请求时。 我怎样才能摆脱它

到目前为止,我所发现的只是在下载过程中向.jar文件添加内容的反病毒软件,调整maven服务器和ant构建的参数。然而,我已经在我的机器上创建了这个插件,并且我正在本地运行目标REST服务器(它基于python)

理想情况下,我想知道如何在我的代码或插件设置或通过首选项抑制此插件。如果这是不可能的,我需要一个变通办法,也可以解释给我们公司以外的用户,因为插件即将发布

该对话框由代码行创建

client.handle(请求)

客户端为jersey客户端,请求为jersey客户端请求

控制台输出为

   -- PolicyProps uninitialized on access of 'jscan.session.policyname
   -- PolicyProps uninitialized on access of 'jscan.session.origin_uri'
   -- PolicyProps uninitialized on access of 'misc.no_user_interaction'
   -- PolicyProps uninitialized on access of 'misc.prompt_user'
   -- PolicyProps uninitialized on access of 'misc.notify_user'
   -- PolicyProps uninitialized on access of 'misc.max_offense_cnt'
   -- PolicyProps uninitialized on access of 'misc.strict_enforcement'
   -- PolicyProps uninitialized on access of 'jscan.session.origin_uri'
   -- PolicyProps uninitialized on access of 'net.bind_enable'
   -- PolicyProps uninitialized on access of 'net.connect_src'
   -- PolicyProps uninitialized on access of 'net.connect_other'
   -- PolicyProps uninitialized on access of 'net.connect_in_dom_list'
   Msgs: Failed to find localized message for key "instr.action.connect" - using default English form
   Msgs: Failed to find localized message for key "instr.msg.dialog.action_warning_start" - using default English form
   -->> returning Frame NULL
   Msgs: Failed to find localized message for key "instr.dialog.title.applet_alert" - using default English form
   Msgs: Failed to find localized message for key "instr.button.allow" - using default English form
   Msgs: Failed to find localized message for key "instr.button.disallow" - using default English form
   Msgs: Failed to find localized message for key "instr.button.stop_applet" - using default English form
   BaseDialog: owner frame is a java.awt.Frame

好的,问题已经解决了。这是一个由trend micro(反病毒软件)注入代码的jersey插件。一个新的下载没有解决这个问题

在此之前已经描述了该问题: