导航: 好喜爱学习网 >> 编程语言 >> Unix编程 >> Java源码:CORBA入门
相关文章
最新文章
文章内容
Java源码:CORBA入门
作者:未知 来源:网络收集 录入:管理员
Below is a simple example of a CORBA program
download the source file 

1. produce a idl file like this
   hello.idl
   module HelloApp {
     interface Hello    {         
         string sayHello();
    };
  };

2. produce stub and skeleton files through idltojava.exe
   idltojava hello.idl
   idltojava is now named as idlj.exe and is included in the JDK. 

3. write a server program like this 

// HelloServer.java 
  
import HelloApp.*;

import org.omg.CosNaming.*;
import org.omg.CosNaming.NamingContextPackage.*;
import org.omg.CORBA.*;

import java.io.*;
class HelloServant extends _HelloImplBase 
{
    public String sayHello()
    {
       return "\nHello world !!\n"; 
    }   
  
}

public class HelloServer {

    public static void main(String args[])
    {
try{
    // create and initialize the ORB
    ORB orb = ORB.init(args, null);

    // create servant and register it with the ORB
    HelloServant helloRef = new HelloServant();
    orb.connect(helloRef);

    // get the root naming context
    org.omg.CORBA.Object objRef = 
orb.resolve_initial_references("NameService");
    NamingContext ncRef = NamingContextHelper.narrow(objRef);

    // bind the Object Reference in Naming
    NameComponent nc = new NameComponent("Hello", "");
    NameComponent path[] = {nc};
    ncRef.rebind(path, helloRef);

    // wait for invocations from clients
            java.lang.Object sync = new java.lang.Object();
            synchronized (sync) {
                sync.wait();
            }

} catch (Exception e) {
    System.err.println("ERROR: " + e);
    e.printStackTrace(System.out);
}
    }
}    

4. write a client program like this
// HelloClient.java
import HelloApp.*;
import org.omg.CosNaming.*;
import org.omg.CORBA.*;

public class HelloClient 
{
    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");
            NamingContext ncRef = NamingContextHelper.narrow(objRef);
            // test
            System.out.println("OK..");                
            // resolve the Object Reference in Naming
            NameComponent nc = new NameComponent("Hello", "");
            NameComponent path[] = {nc};
            Hello helloRef = HelloHelper.narrow(ncRef.resolve(path));

    // call the Hello server object and print results
           //String oldhello = helloRef.lastMessage();
           //System.out.println(oldhello);
    String Hello = helloRef.sayHello();
    System.out.println(Hello);

} catch (Exception e) {
    System.out.println("ERROR : " + e) ;
    e.printStackTrace(System.out);
}
    }
}

5. complie these files

   javac *.java HelloApp/*.java

6. run the application
   
  a. first you've to run the Name Service prior to the others likethis
     c:\>tnameserv
  b. run server
     c:\>java HelloServer
  c. run client 
     c:\>java HelloClient
 

E-MAIL:309076721@163.com
本站为非营利性质个人网站,建站只为个人爱好与学习,内容大多为电脑技术教程;
网站内容来源于互联网收集整理,禁止用于非法途径,如发现本网站上有侵权的文章请联系我们,我们会尽快删除;
本站不对站点内容准确性、完整性和真实性作任何承诺,由此产生的后果本站不承担任何责任,对以上引起的一切法律纠纷本站无权利承担。