vote up 1 vote down star

I have written rmi server code in netbeans 6.5. how can i use rmic in netbeans 6.5 so that i can create server_stub class?

flag

0% accept rate
I have added the tags- netbeans and netbeans 6.5, since it relates to both. – Amit Jul 1 at 6:03
Its a bad idea, and would result in too many tags in future. Would be hard for the person who will be looking for an answer. Reverting it. Thanks. – Vinegar Jul 1 at 7:00

3 Answers

vote up 0 vote down

If you use Spring's remote proxying (RmiProxyfactoryBean), you don't need to generate any stub/skel classes at all. Spring just does all the magic for you behind the scenes. You don't even need to implement the Remote interface!

See the docs here

link|flag
The standard RMI implementation also provides a proxy implementation, if you call UnicastRemoteObject.exportObject(Remote, port). – kdgregory Jul 21 at 13:21
Yes - but in Spring you can export anything; even interfaces which don't implement Remote – oxbow_lakes Jul 21 at 15:21
vote up 0 vote down

you cannot use rmic through netbeans. you need to generate the server stub manually by running the rmic command at the command line. but in case of eclipse you can generate the stub from the ide with the help of rmi plugin.

link|flag
Not from NetBeans itself. But one can change the build.xml file. If you know ant this should be a breeze. – Koekiebox Sep 3 at 20:05
vote up 0 vote down

Hi,

Why not edit the standard build.xml located in the project root directory? Include the Rmic ant task. This will automatically rmic your classes every time you build a project in netbeans.

link|flag

Your Answer

Get an OpenID
or

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