Talk:Java remote method invocation

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Sources[edit]

Can some one provide Link to useful materail on EJB's (for Starters.. may be some overview kind of a thing)

Try our Enterprise JavaBeans article? - IMSoP 19:59, 26 September 2005 (UTC)[reply]

Improvements[edit]

I can see some places where this article could be improved

  • how RMI works (the daemons threads, distributed GC, serialization, dynamic classload)
  • some sample code
  • Uses of RMI (e.g. Jini, EJB2.x)
  • Politics: How MS dropped RMI from their MSJVM machine because DCOM was all you need.
  • Issues/limitations of RMI. brittleness of interfaces/serializations, incoming calls on different threads and its implications for deadlock.
  • Issues/Limitations of the official RMI implementation. Its Distributed GC algorithm, lack of layering/extensibility, security model.

What we have here is a good start to an article, but it is just a start. SteveLoughran 11:56, 27 February 2007 (UTC)[reply]

Agreed. The article needs expansion. In particular, the definition of RMI is given only in reference to its mainframe corollary, RPC, rather than being defined in terms of what RMI is. —Preceding unsigned comment added by 63.72.235.4 (talk) 16:41, 14 May 2008 (UTC)[reply]

rmic[edit]

If I'm not mistaken, Java 5.0 does NOT automatically compile stubs for server classes. You still need to use the rmic command, as else, it won't find your stub. Can anyone confirm this?

It isn't true. "Dynamic Generation of Stub Classes (since 5.0)" See: http://java.sun.com/javase/6/docs/technotes/guides/rmi/relnotes.html —Preceding unsigned comment added by 84.244.115.98 (talk) 10:12, 9 January 2008 (UTC)[reply]

SabbeRubbish 13:12, 4 October 2007 (UTC)[reply]

Steps to executing the RMI Programme into your computer machine[edit]

Here I'm giving steps which is follow to execute the RMI Programme into our local machine:-

1). Compile Interface File , Server File, Client File and Registry File with your JDK softee. ex.

      javac *.java


2). Use RMIC command for creting Stubs and Skeleton.

      rmic serverFile Name


3). Start RMI regisetry which is the part of yur JDK Softeee.

   JDK path's in your machine:-
    C:/ProgrameFiles/JAVA/Jdk1.6.0/bin/rmiregistry.exe
    Allow your firewall to allow that particular application for run it execution..
    start rmiregistry (a command prompt will be open which having blank screen)


4). Run that Registry File.

    java registerIT.java

5). After that open new command Prompt

6). The enter this command into your command promt

  C:/> java.exe -Djava.security.policy=registerIT.policy Client File Name (*HelloClient)

Note:-

Here I'm writing HelloClient due to my client file name start with "HelloClient" —Preceding unsigned comment added by Aaditya025 (talkcontribs) 06:38, 1 September 2010 (UTC)[reply]

Example: Java conventions[edit]

Just noticed in the example the use of the name "RmiServerIntf" for an Interface. Shouldn't it be replace by "IRmiServer" or something? 178.1.248.111 (talk) 13:03, 5 August 2012 (UTC)[reply]