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
Plugins not visible
naharvikas
Member Posts: 3 Contributor I
Hello Guys,
Earlier i had developed a plugin for some image processing. Now I have developed a few more image processing operators and I am trying to develop a plugin for the same. I did followed exactly the same procedure which i had followed the last time. The code gets compiled properly and a jar file is also created. After copying the jar file into the plugin folder of rapidminer on starting rapidminer i dont get any kind of error but i am unable to see my operators in the rapidminer window. Could anyone plz let me the solution or where i could be going wrong?
Thanks and Regards
Earlier i had developed a plugin for some image processing. Now I have developed a few more image processing operators and I am trying to develop a plugin for the same. I did followed exactly the same procedure which i had followed the last time. The code gets compiled properly and a jar file is also created. After copying the jar file into the plugin folder of rapidminer on starting rapidminer i dont get any kind of error but i am unable to see my operators in the rapidminer window. Could anyone plz let me the solution or where i could be going wrong?
Thanks and Regards
Tagged:
0
Answers
Do you use the CVS-Version ? If this is true, did you recognize this: http://rapid-i.com/rapidforum/index.php/topic,58.0.html
If this not help... Maybe you can tell us, what you did exactly
greetings
Steffen
I am extending the Rapidminer.
I have a class which extends operator and a result class extends ResultObjectAdapter.
I have given bodies to the necessary methods in the above classes.
Then i am using build.xml to create a Jar file and adding operator.xml file to the Mani-Fest folder in created jar file.
After this i copy the created jar file into the plugins folder and trying to run rapidminer.
It opens successfully but I am unable to see my operators.
I really dont know on what i am missing while creating a jar file..
As Steffen has pointed out: for plugins which should be combined with the latest CVS version (and also with future versions), it is necessary to add another entry in the manifest file. Please follow the instructions given in the link
http://rapid-i.com/rapidforum/index.php/topic,58.0.html
This should do the trick. A complete manifest should then look like this (taken from the Text plugin): The last line (RapidMiner-Type: RapidMiner_Plugin) is new and indicates that this is a RM plugin. Just put the contents given above in a file MANIFEST.MF and place it in the META-INF folder of your jar file.
Hope that helps,
Ingo
Actually i am using Rapidminer version 4.0
And I found the problem. The problem was I was naming the operators.xml file as operator.xml.
But now I came to know about the this latest change and will include in my plugin
Thanks again guys.
Cheers,
Ingo