示例#1
0
 static public ConnectionNode MWL(ConnectionNode node)
 {
     node.IsBuiltIn  = true;
     node.Name       = "[Demo] Storage Server's MWL Plug-in";
     node.RemoteIP   = "127.0.0.1";
     node.RemotePort = 6788;
     node.MLPPrefix  = InternalFormatter.ToHexString(MLPEnvelope.Envelop_Header);
     node.MLPSuffix  = InternalFormatter.ToHexString(MLPEnvelope.Envelop_Trailer);
     node.Timeout    = 0;
     node.WaitForACK = true;
     return(node);
 }
示例#2
0
 static public ConnectionNode Defaults(ConnectionNode node)
 {
     node.Name           = "";
     node.RemoteIP       = "127.0.0.1";
     node.RemotePort     = 6790;
     node.MLPPrefix      = InternalFormatter.ToHexString(MLPEnvelope.Envelop_Header);
     node.MLPSuffix      = InternalFormatter.ToHexString(MLPEnvelope.Envelop_Trailer);
     node.Timeout        = 0;
     node.WaitForACK     = true;
     node.ClientFacility = "LEAD Tech";
     node.ClientAppName  = "LEADTOOLS HL7 Sender";
     return(node);
 }
示例#3
0
        static public ConnectionNode PatientUpdate(ConnectionNode node)
        {
            node.IsBuiltIn  = true;
            node.Name       = "[Demo] Storage Server's Patient Update Plug-in";
            node.RemoteIP   = "127.0.0.1";
            node.RemotePort = 6787;
            node.MLPPrefix  = InternalFormatter.ToHexString(MLPEnvelope.Envelop_Header);
            node.MLPSuffix  = InternalFormatter.ToHexString(MLPEnvelope.Envelop_Trailer);
            node.Timeout    = 0;
            node.WaitForACK = true;
#if FOR_WIN64
            node.ClientAppName = "L20_CLIENT64";
#else
            node.ClientAppName = "L20_CLIENT32";
#endif
            return(node);
        }