Java Corba示例程序(JDK1.5

1.         定义idl文件

module HelloApp
{
  interface Hello
  {
    string sayHello();
    oneway void shutdown();
  };
};
 

 

        

2.         生成stub

Idlj -fall Hello.idl

        

3.         服务器端

import HelloApp.*;
import org.omg.CosNaming.*;
import org.omg.CosNaming.NamingContextPackage.*;
import org.omg.CORBA.*;
import org.omg.PortableServer.*;
import org.omg.PortableServer.POA;
 
import java.util.Properties;
 
class HelloImpl extends HelloPOA {
  private ORB orb;
 
  public void setORB(ORB orb_val) {
    orb = orb_val;
  }
   
  // implement sayHello() method
  public String sayHello() {
    return "\nHello world !!\n";
  }
   
  // implement shutdown() method
  public void shutdown() {
    orb.shutdown(false);
  }
}
 
 
public class HelloServer {
 
  public static void main(String args[]) {
    try{
      // create and initialize the ORB
      ORB orb = ORB.init(args, null);
 
      // get reference to rootpoa & activate the POAManager
      POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
      rootpoa.the_POAManager().activate();
 
      // create servant and register it with the ORB
      HelloImpl helloImpl = new HelloImpl();
      helloImpl.setORB(orb);
 
      // get object reference from the servant
      org.omg.CORBA.Object ref = rootpoa.servant_to_reference(helloImpl);
      Hello href = HelloHelper.narrow(ref);
          
      // get the root naming context
      org.omg.CORBA.Object objRef =
          orb.resolve_initial_references("NameService");
      // Use NamingContextExt which is part of the Interoperable
      // Naming Service (INS) specification.
      NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
 
      // bind the Object Reference in Naming
      String name = "Hello";
      NameComponent path[] = ncRef.to_name( name );
      ncRef.rebind(path, href);
 
      System.out.println("HelloServer ready and waiting ...");
 
      // wait for invocations from clients
      orb.run();
    }
        
      catch (Exception e) {
        System.err.println("ERROR: " + e);
        e.printStackTrace(System.out);
      }
          
      System.out.println("HelloServer Exiting ...");
        
  }
}
import HelloApp.*;
import org.omg.CosNaming.*;
import org.omg.CosNaming.NamingContextPackage.*;
import org.omg.CORBA.*;
import org.omg.PortableServer.*;
import org.omg.PortableServer.POA;
 
import java.util.Properties;
 
class HelloImpl extends HelloPOA {
  private ORB orb;
 
  public void setORB(ORB orb_val) {
    orb = orb_val;
  }
   
  // implement sayHello() method
  public String sayHello() {
    return "\nHello world !!\n";
  }
   
  // implement shutdown() method
  public void shutdown() {
    orb.shutdown(false);
  }
}
 
 
public class HelloServer {
 
  public static void main(String args[]) {
    try{
      // create and initialize the ORB
      ORB orb = ORB.init(args, null);
 
      // get reference to rootpoa & activate the POAManager
      POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
      rootpoa.the_POAManager().activate();
 
      // create servant and register it with the ORB
      HelloImpl helloImpl = new HelloImpl();
      helloImpl.setORB(orb);
 
      // get object reference from the servant
      org.omg.CORBA.Object ref = rootpoa.servant_to_reference(helloImpl);
      Hello href = HelloHelper.narrow(ref);
          
      // get the root naming context
      org.omg.CORBA.Object objRef =
          orb.resolve_initial_references("NameService");
      // Use NamingContextExt which is part of the Interoperable
      // Naming Service (INS) specification.
      NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
 
      // bind the Object Reference in Naming
      String name = "Hello";
      NameComponent path[] = ncRef.to_name( name );
      ncRef.rebind(path, href);
 
      System.out.println("HelloServer ready and waiting ...");
 
      // wait for invocations from clients
      orb.run();
    }
        
      catch (Exception e) {
        System.err.println("ERROR: " + e);
        e.printStackTrace(System.out);
      }
          
      System.out.println("HelloServer Exiting ...");
        
  }
}
 

 

        

4.         客户端

import HelloApp.*;
import org.omg.CosNaming.*;
import org.omg.CosNaming.NamingContextPackage.*;
import org.omg.CORBA.*;
 
public class HelloClient
{
  static Hello helloImpl;
 
  public static void main(String args[])
    {
      try{
        // create and initialize the ORB
         ORB orb = ORB.init(args, null);
 
        // get the root naming context
        org.omg.CORBA.Object objRef =
             orb.resolve_initial_references("NameService");
        // Use NamingContextExt instead of NamingContext. This is
        // part of the Interoperable naming Service. 
        NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
 
        // resolve the Object Reference in Naming
        String name = "Hello";
        helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));
 
        System.out.println("Obtained a handle on server object: " + helloImpl);
        System.out.println(helloImpl.sayHello());
        helloImpl.shutdown();
 
         } catch (Exception e) {
          System.out.println("ERROR : " + e) ;
           e.printStackTrace(System.out);
           }
    }
 
}
 

 

        

5.         编译

javac *.java HelloApp/*.java

        

6.         启动

Sorbd -ORBInitialPort 1050 -ORBInitialHost localhost&

java HelloServer -ORBInitialPort 1050 -ORBInitialHost localhost&

java HelloClient -ORBInitialPort 1050 -ORBInitialHost localhost

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值