package RMI.Hello;
import java.net.MalformedURLException;
import java.rmi.AlreadyBoundException;
import java.rmi.Naming;
import java.rmi.RMISecurityManager;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import RMI.Hello.Sample;
public class SampleSever {
public static void main(String args[]) {
try {
//System.setSecurityManager(new RMISecurityManager());
//set the security manager
//create a local instance of the object
Sample hellosample = new SampleImpl();
//local registry
LocateRegistry.createRegistry(1099);
//put the local instance in the registry
Naming.bind("rmi://localhost:1099/SAMPLE-SERVER",hellosample);
System.out.println("Sever Waiting..");
}
catch (java.net.MalformedURLException me) {
System.out.println("Malformed URL: " + me.toString()); }
catch (RemoteException re) {
System.out.println("Remote exception: " + re.toString()); }
catch (AlreadyBoundException e) {
// TODO Auto-generated catch block
System.out.println("No Bound: " + e.toString());
}
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
RMI_Hello.rar (11个子文件)
RMI_Hello
.project 385B
src
RMI
Hello
Sample.java 237B
SampleClient.java 1KB
SampleImpl.java 480B
SampleSever.java 1KB
.settings
org.eclipse.jdt.core.prefs 598B
.classpath 301B
bin
RMI
Hello
SampleImpl.class 828B
SampleSever.class 1KB
SampleClient.class 1KB
Sample.class 236B
共 11 条
- 1
资源评论
weixinff
- 粉丝: 0
- 资源: 7
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功