0

我有一个已定义的 idl 文件,如下所示:

module Banking {
    typedef string Transactions[5];
    typedef long AccountId;

    interface Account {
        exception InsufficientFunds {};

        readonly attribute double balance;
        long lodge(in double amount);
        long withdraw(in double amount) raises (InsufficientFunds);
        readonly attribute Transactions transactions;   
    };

    interface Bank {
        long accountCount();
        double totalMoney();
        Account account(in AccountId accNr);
    };
};

我用 idlj 编译的。我已经定义了一个 BankServant,客户端使用它来与服务器通信,并且我有一个工作程序,几乎所有方法都实现了。我唯一的问题是我不知道如何实现account(in AccountId accNr)方法,而方法又会返回正确的 Account 对象。由于我不了解 CORBA 并且我只是在帮助一个朋友,我想寻求某种解决方案/示例/教程,这可能会帮助我破解一个简单但工作类布局来处理这种情况。

先感谢您。

4

1 回答 1

1

这实际上取决于您用于 POA(便携式对象适配器)的策略。假设您在服务器中使用 RootPOA,您必须:

  1. 为 Account 对象创建一个实现对象。这通常被称为AccountImplAccountServant如我所见以银行服务员的名义。

    AccountServant as = new AccountServant(accNr);

  2. 您必须在 POA 中注册对象。这再次与您为 POA 选择的策略有关。使用默认的根 POA:

    org.omg.CORBA.Object o = rootPOA.servant_to_reference( as );

  3. Account使用生成的 IDL 编译器将其缩小到正确的类型AccountHelper

    Account acc = AccountHelper.narrow(o);

  4. 把它返还

    return acc;

AccountServant此代码假定您已经为接受帐号作为其第一个参数的 java 对象编写了一个构造函数。您还必须提供对BankServant要在其中注册新创建Account对象的 POA 的引用。

There are lots of tutorials. See this one for example, as the set of options for the POA are so many that require a book to explain them all :).

于 2010-12-01T23:13:57.900 回答