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 Doc

于 2013-07-15T07:48:46.970 に答える