rmic fails to create the _skel class
I am having problems with a simple distributed object I am attempting whilst getting to grips with RMI.
This is not working on WinXP as well as Linux. I have a server project which includes the following java files...
Meeting.java // the interface extending Remote
MeetingImpl.java // the class file implementing the interface.
The files compile okay and the class files are stored in a different directory.
The trouble is when I compile MeetingImpl.class with the command rmic then there are no warnings but only the MeetingImpl_stub.class file is produced and not the _Skel class file.
Any ideas what I am doing wrong.
I could post the code if required.

