I'm trying to develop a Java RMI application and found out that it's not straight forward to tell eclipse to compile it using rmic.
Are there any available addons (if so which one do you recommend)?
or
what are the ways to accomplish this?
Thanks.
As of Java 5 there is no need to use the rmic
tool since stubs are now dynamically generated. I'd suggest following an updated tutorial which is more geared towards RMI implementations for Java 5 or greater. Following the RMI Guide for Java 5 should give you a decent start.