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.

[706 byte] By [TamTama] at [2007-10-3 2:58:06]
# 1
You're probably using JDK 5.0.Since JDK 1.2 skeletons are no longer needed and since JDK5.0 skeletons are no longer generated by default.Genady
genadya at 2007-7-14 20:47:30 > top of Java-index,Core,Core APIs...
# 2
Thanks genady, I will give it a go in the morning
TamTama at 2007-7-14 20:47:30 > top of Java-index,Core,Core APIs...