The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Using Rapidminer in an Applet
Hi there,
I use some rapidminer operators in an applet, but when I tried to deploy, I get a plenty of security errors. For example, great problem is creating OperatorDescription, because I cant get ClassLoader.getSystemClassLoader() in an unsigned applet. Is there a way how to avoid using signed applets?
I use some rapidminer operators in an applet, but when I tried to deploy, I get a plenty of security errors. For example, great problem is creating OperatorDescription, because I cant get ClassLoader.getSystemClassLoader() in an unsigned applet. Is there a way how to avoid using signed applets?
operatorDescription = new OperatorDescription(
ClassLoader.getSystemClassLoader(),
"DecisionTreeLearner",
"com.rapidminer.operator.learner.tree.DecisionTreeLearner",
"description can be written here", null, null, null);
Tagged:
0
Answers
did you try to avoid creating an OperatorDescription and instead create the Operator via OperatorService.createOperator(Operator.class)?
Greetings,
Sebastian
So the question should be probably reformulated to: How to initialize Rapidminer in an unsigned applet?