1

我有一个 c++ 客户端通过omniOrb 将Corba 消息发布到ac# 服务器。我已经在服务器端注册了一个 PortableInterceptor 到 Orb 并且可以拦截消息。在调试中,我在拦截中收到一条 ServerRequestInfo 消息,并且在调试监视窗口中可以看到一直到带有客户端 IP 的 RemoteEndPort。但是,其中许多类都有我无法在代码中访问的私有成员。

我该怎么做?

这是我的代码

// register the OrbInitialiser here in some  code
omg.org.CORBA.OrbServices orb = omg.org.CORBA.OrbServices.GetSingleton();
orb.RegisterPortableInterceptorInitalizer( new LT.Quantifi.BrokerOrbInitialiser());
orb.CompleteInterceptorRegistration();

// register the Inteceptor in the OrbInitialiser here
public class BrokerOrbInitialiser : omg.org.PortableInterceptor.ORBInitializer
{
    public void post_init(ORBInitInfo info)
    {
        BrokerRequestInterceptor serverRequests = new BrokerRequestInterceptor();
        info.add_server_request_interceptor(serverRequests);
     }
}

// Inteceptor catches messages here
Public class BrokerRequestInterceptor : omg.org.PortableInterceptor.ServerRequestInterceptor
{
.
.
    public void receive_request_service_contexts(ServerRequestInfo ri)
    {
        Console.WriteLine("I catch messages here");
    }
.
.
}
4

1 回答 1

0

在 CORBA 中没有获取该信息的标准方法。一些实现确实有一个自定义的方式来获取一些信息,例如 TAO 有一个你可以访问的传输当前对象。在使用 IIOP 收到呼叫的那一刻,您可以将其缩小到 IIOP 传输电流,它会为您提供该信息。看起来您需要 C# ORB 的扩展才能具有类似的扩展

于 2014-01-13T19:06:30.330 回答