Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an assignment with java rmi, and now I want to create the stub classes for this project, but I dont know how.

I want to learn how to create stub for rmi projects. Can you help please. I would rather a detailed answer.

share|improve this question
I want you to tag this question properly :) – Gerrie Schenck Feb 8 '10 at 11:24

3 Answers

I suggest you read through the RMI tutorial, this second tutorial, and the docs for rmic. If those don't help you, you can then ask a more specific question explaining which bit wasn't covered.

share|improve this answer

You don't need to create stub classes at all. See the preamble to the Javadoc for UnicastRemoteObject.

share|improve this answer

Since J2SE 5, stub classes no longer need to be pre-generated. There's still lots of old tutorials out there, so that might be confusing at first.

Here's a nice, more recent Hello World tutorial for RMI that'll get you going.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.