Search code examples
javah2orapidminer

access denied("java.net.NetPermission" "getProxySelector")


I am working on the extension development of rapidminer. I downloaded the template of the extension project from github and developed my own operator. After launching rapidminer, the extension was successfully installed.

enter image description here

In the test code, I manually created the process and added operator. The operation was successful and the operator successfully completed the calculation.

enter image description here

But when I dragged the module from the rapidminer software to accomplish the same thing, I reported this error:

enter image description here

This my operator : enter image description here

enter image description here enter image description here

And this is rapidminer' method to checkPermission: enter image description here

enter image description here


Solution

  • RapidMiner has a security feature to prevent the unchecked execution of potentially risky extensions.To still execute your extension, you can check under the setting to give unsigned extensions (those that don't come from the RapidMiner marketplace) to be executed with additional rights.

    enter image description here

    For more detailed questions I also recommend to post at the RapidMiner community where a lot of experienced extensions developers can be found.