CORBA 示例使用不同的 JDK [关闭]

Posted

技术标签:

【中文标题】CORBA 示例使用不同的 JDK [关闭]【英文标题】:CORBA example uses a different JDK [closed] 【发布时间】:2014-08-18 23:03:42 【问题描述】:

http://www.oracle.com/technetwork/articles/javase/rmi-corba-136641.html 的当前 CORBA 示例

使用不同的 JDK 版本。我正在使用 JDK 1.7

所以问题是我用extends FileInterfacePOA而不是extends _FileInterfaceImplBase扩展了课程

所以现在我在服务器代码中遇到错误,我应该使用什么来代替函数 .connect().rebind()

服务器代码是:

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

public class StartServer 
   public static void main(String args[]) 
      try
         // create and initialize the ORB
         ORB orb = ORB.init(args, null);
         // create the servant and register it with the ORB
         FileTransferObj fileRef = new FileTransferObj();
         orb.connect(fileRef);
         // 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("FileTransfer", " ");
         NameComponent path[] = nc;
         ncRef.rebind(path, fileRef);
         System.out.println("Server started....");
         // 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.getMessage());
         e.printStackTrace(System.out);
      
   

接口代码为:

import FileTransferApp.*;``
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;


    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;

public class FileTransferObj extends FileInterfacePOA 
       public byte[] downloadFile(String fileName)
              File file = new File(fileName);
              byte buffer[] = new byte[(int)file.length()];
              try 
                 BufferedInputStream input = new
                   BufferedInputStream(new FileInputStream(argv[0]));
                 input.read(buffer,0,buffer.length);

               catch(Exception e) 
                 System.out.println("FileServant Error: "+e.getMessage());
                 e.printStackTrace();
              
              return(buffer); 
           
        

【问题讨论】:

您遇到什么错误? 大家好。我解决了错误。错误是因为如您所见,我使用的是 JDK 1.7,因此 StartServer.java 中的整个逻辑发生了变化。我正在更新chage,请看答案部分。 【参考方案1】:

因此,由于 JDK 版本与我遵循的示例不同。以下更改将解决问题。

import org.omg.CORBA.ORB;
import org.omg.CosNaming.NameComponent;
import org.omg.CosNaming.NamingContext;
import org.omg.CosNaming.NamingContextExt;
import org.omg.CosNaming.NamingContextExtHelper;
import org.omg.CosNaming.NamingContextHelper;
import org.omg.PortableServer.POA;
import org.omg.PortableServer.POAHelper;

import FileTransferApp.*;

public class StartServer 
   public static void main(String args[]) 
      try
         // create and initialize the ORB
         ORB orb = ORB.init(args, null);
         POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
         rootpoa.the_POAManager().activate();

         // create the servant and register it with the ORB
         FileTransferObj fileRef = new FileTransferObj();
         fileRef.setORB(orb);

         //get Object reference from servant
         org.omg.CORBA.Object ref =  rootpoa.servant_to_reference(fileRef);
         FileInterface href = FileInterfaceHelper.narrow(ref);

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

         //
         NameComponent path[] = ncRef.to_name("ABC");
         ncRef.rebind(path, href);

         System.out.println("Server started....");
         // Wait for invocations from clients
         for(;;)
            orb.run();
         
       catch(Exception e) 
         System.err.println("ERROR: " + e.getMessage());
         e.printStackTrace(System.out);
      
   

【讨论】:

感谢分享,这对我来说很重要! @The 第三,想知道你在这个项目上的什么地方,你是否可以进一步分享这个项目的任何细节,因为我正在做类似的事情。如果可能的话,很高兴给你发 DM 或给你发电子邮件!

以上是关于CORBA 示例使用不同的 JDK [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

CORBA:服务器作为客户端

如何使用 C# 和 IIOP.NET 查找 Corba 服务?

corba的好替代品[关闭]

SSM框架之RestFul示例

推送 API 示例 [关闭]

如何更改标准JDK corba ORB线程池的线程名称