I would like to send a message to an Eclipse plugin - that I'm developing - which is installed inside IBM Lotus Notes, from a third party app(an Internet Explorer extension).
我想向一个Eclipse插件发送消息 - 我正在开发 - 它安装在IBM Lotus Notes中,来自第三方应用程序(Internet Explorer扩展)。
If I access notes.exe with some argument, that won't be forwarded to my plugin. I am not really aware of my options here.
如果我使用某个参数访问notes.exe,则不会将其转发到我的插件。我真的不知道我的选择。
Thanks
1 个解决方案
#1
2
There is no way to do this unless the plugin itself supports some method of communication.
除非插件本身支持某种通信方法,否则无法做到这一点。
You could try calling Platform.getApplicationArgs()
which in an ordinary Eclipse RCP will give you the program arguments - I don't know if this works for Lotus Notes. Eclipse normally just ignores arguments it does not understand so your plugin can support additional arguments.
您可以尝试调用Platform.getApplicationArgs(),它在普通的Eclipse RCP中将为您提供程序参数 - 我不知道这是否适用于Lotus Notes。 Eclipse通常只是忽略它不理解的参数,因此你的插件可以支持其他参数。
#1
2
There is no way to do this unless the plugin itself supports some method of communication.
除非插件本身支持某种通信方法,否则无法做到这一点。
You could try calling Platform.getApplicationArgs()
which in an ordinary Eclipse RCP will give you the program arguments - I don't know if this works for Lotus Notes. Eclipse normally just ignores arguments it does not understand so your plugin can support additional arguments.
您可以尝试调用Platform.getApplicationArgs(),它在普通的Eclipse RCP中将为您提供程序参数 - 我不知道这是否适用于Lotus Notes。 Eclipse通常只是忽略它不理解的参数,因此你的插件可以支持其他参数。