1

我是 CORBA 的新手。当我运行以下代码时,我得到:

线程“主”org.omg.CosNaming.NamingContextPackage.NotFound 中的异常:IDL:omg.org/CosNaming/NamingContext/NotFound:1.0

排队:

ncRef.rebind(factoryName,  rootpoa.servant_to_reference(sessionFactoryServant));

代码:

final String initHost = System.getProperty("org.omg.CORBA.ORBInitialHost",
        java.net.InetAddress.getLocalHost().getHostAddress());
    if (StringUtils.isNotBlank(initHost) == true)
    {
        properties.put("org.omg.CORBA.ORBInitialHost", initHost);
    }

    //final String initPort = System.getProperty("org.omg.CORBA.ORBInitialPort");
    final String initPort = "1051";
    if (StringUtils.isNotBlank(initPort) == true)
    {
        properties.put("org.omg.CORBA.ORBInitialPort", initPort);
    }

    // Start the ORB.
    m_orb = ORB.init(m_arguments, properties);

    POA rootpoa = POAHelper.narrow(m_orb.resolve_initial_references("RootPOA"));
    rootpoa.the_POAManager().activate();

    final RSSessionFactoryServant sessionFactoryServant = new RSSessionFactoryServant(rootpoa);
    rootpoa.activate_object(sessionFactoryServant);


    org.omg.CORBA.Object objRef = m_orb
            .resolve_initial_references("NameService");
    System.out.println("Name server is " + objRef + ".");

    NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
    System.out.println("Naming context is " + ncRef + ".");

    final NameComponent[] factoryName = getSessionFactory();    // Contains name components.. nothinf seems wrong here 
    System.out.println("Session Factory is [" + ArrayUtils.toString(factoryName) + "].");

    ncRef.rebind(factoryName,  rootpoa.servant_to_reference(sessionFactoryServant));

    System.out.println("Server ready and waiting ...");

     m_orb.run();
4

1 回答 1

1

命名服务不知道您正在搜索的对象。因此,您会收到 NotFound 异常。您可能想bind在第一步中使用。

用于 NamingContextOperations 的 Oracle 文档

于 2013-07-15T07:48:46.970 回答