jacorb双向同步呼叫

时间:2014-05-24 18:10:08

标签: java jacorb

我尝试使用corba并使用JacORB实现java程序。我必须使用具有静态调用接口(SII)的双向同步调用。我在JacORB的官方文档中找不到任何相关信息。

  

一旦客户端检索到对象的IOR,它就可以调用操作   在利用静态或动态调用的对象上   接口机制(分别为SII和DII)。

org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args, null);
        org.omg.PortableServer.POA poa =
        org.omg.PortableServer.POAHelper.narrow(orb.resolve_initial_referencpoa.the_POAManager().activate();
        org.omg.CORBA.Object o = poa.servant_to_reference( new serverImpl() );

我启动了ORB然后呢?有人一些文件?关于双向同步呼叫和SII的简单例子或解释?

1 个答案:

答案 0 :(得分:1)

SII的一个好定义是http://www4.cs.fau.de/~geier/corba-faq/sii.html

你可以在demo / hello子目录中找到一个简单的JacORB示例。

我建议在jacorb-developer列表(http://www.jacorb.org/contact.html)上询问有关JacORB的问题。 JacorB的源代码也可以在github(https://github.com/JacORB/JacORB/

上找到