Error message when starting devleoper

Looking at the .log file in Servoy 2.2.5 I see this message, immediately after starting Developer, and before opening any solution. Servoy runs, but seems slower than before. How worried should I be?

2006-05-06 20:05 : Loading servoy.properties from C:\Program Files\Servoy\servoy.properties
2006-05-06 20:05 : Loading - Done
2006-05-06 20:05 : Using RMI registry on port 1099
Thread:main : 2006-05-06 20:06 : Error occured loading server class com.servoy.j2db.plugins.IServerPlugin from plugin, error: java.lang.InstantiationException: com.servoy.j2db.plugins.IServerPlugin
Thread:TaskExecuter[3] : 2006-05-06 20:06 : Error occured loading developer class com.servoy.j2db.plugins.IDeveloperPlugin from plugin, error: java.lang.InstantiationException: com.servoy.j2db.plugins.IDeveloperPlugin

I have never noticed it before, but haven’t really had the need to look.
I have been running a Servoy client pointed at localhost recently for testing, that’s the only thing I can think of that’s new.[/quote]

That’s a message that comes from improper/not loading of a client/server plugin I guess…

That would be my guess too :? But the puzzle is why it’s not loading. Servoy seems to be running just fine.

Well, the client side is loading (I think from what I see). The server side is not. And the reason that that’s not loading can be a multitude of reasons… I assume it is your own plugin so there is one person that can debug that… And that’s you :)

MYSTERIOUS, :shock: I haven’t changed anything about my little plugin and it’s working fine in developer.

Exactly that’s where your issue is. It is working fine in developer because you are also on your server. When you start a client it needs rmi to communicate with the server part of your plugin. Have you created stub classes?

I see I am still in unfamilar territory. :?

I have a class called HicCall which implements IClientPlugin. Is this what you are referring to? It uses the class HicCallProvider where all the called methods are.

No, you should have a look at the server classes you implemented and make sure you implemented the server/rmi correct.

Have a good look at the mail plugin, explore the use of rmi and you should see what I mean…

this is very strange.
It looks like it is somehow that it tries to make a new Object/instance from the 2 interfaces.
What does youre plugin look like?
If you remove that plugin. Is the message gone?