public void Open()
        {
            sendToCE = factory.CreateChannel();
            string client = string.Empty;

            client  = GetLocalIPAddress();
            client += ":19002";

            Logger.LogCalculateEngineConnections(client, "NMS send request for establishing communication with CE", Enums.LogLevel.Info);
            Logger.LogCalculateEngineConnections(client, "NMS establieshed communication with CE", Enums.LogLevel.Info);
        }
示例#2
0
 public CETransaction(ISendDataFromNMSToCE calEngine)
 {
     this._calcEngine = calEngine;
 }