Java

本类阅读TOP10

·使用MyEclipse开发Struts框架的Hello World!(录像1)
·hibernate配置笔记
·AOP编程入门--Java篇
·linux下Tomcat 5.0.20 与 Apache 2 安装/集成/配置
·在win2003下整合了整合Tomcat5.5+ apache_2.0.53+ mod_jk_2.0.47.dll
·构建Linux下IDE环境--Eclipse篇
·Jsp 连接 mySQL、Oracle 数据库备忘(Windows平台)
·ASP、JSP、PHP 三种技术比较
·Tomcat5.5.9的安装配置
·AWT GUI 设计笔记(二)

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
The first cup of RMI

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

 Which books are worth reading as the tutorial of RMI.
 I strongly command the guys who want start his RMI with http://java.sun.com/docs/books/tutorial/rmi/overview.html
 It is really simple but very useful. you can also get the following resource as reference:
1.  http://www.oreilly.com/catalog/javarmi/index.html 
2. The appendix A of the Mastering EJB  which you can get from 
     http://www.theserverside.com/books/masteringEJB/download/Mastering_EJB2.pdf

What does the figure illustrate  to us?


You can know the whole structure of a RMI application suc as how can client let the server run its program and the way server get the code from client. I will try to explain them as plain as I can.
1. The RMI application are often comprise of two seperate part. one is client and another is server. since sometimes the client's machine is not powerful enough it really needs a server to help them handle with the information they get. A typical server creates the remote object which will create some stub in client's environment someting like the clients holds the reference of some object which server creates. A typical client gets the remote reference (the stub) and invoke the method on it. the argument of the method of stub should be serializable in this way the argument can be copied and transfered to the server

2.  Whe the Server start up it should using Naming.rebind to regist the remote object in registry for the bootstrapping purposes (or you may use aother naming service as one that uses JNDI) .

3. The RMI registry is using for finding the reference to the remote objects, it is a simple remote objeect name service that allows remote clients to get a reference to the remote object by name. it runs only in server for the security reason. as you can told the RMI registry is part of the server. also you can see it reside in the server side in the figure.

4.The client will invoke Naming.lookup to get the stub through the registry(it only provide the naming service which can lead the user to where the object reside)

5. Client invoke the method in the stub and pass his local object to the server. RMI will handle with this procedure and then the server will take response to continue the other work, run it return value or exception(note all this are passing by value)

Summay:
     As the mechanism we describe above. RMI has ability to download the bytecodes (or simply code) of an object's class if the class is not defined in the receiver's virtual machine.




相关文章

相关软件