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]
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
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 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.
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?