Exemplo n.º 1
0
 protected virtual void SetupBase(string strProductRoot, string strProductHive, int strProductCipherLength, string strBaseKey, string strSpecificKey, string strKeyDat, string strCustomerData, string strLogPath = "", bool blnLogEnabled = false, int intLogLevel = 0)
 {
     SetProductInfo(strProductRoot, strProductHive, strProductCipherLength);
     m_objLog = new Enterprise.EELog();
     m_objLog.OverrideRegistryInformation(strLogPath, blnLogEnabled, intLogLevel);
     m_objLog.LogMessage("EEBase : SetupBase : Log Initialized", 35);
     m_objComputerManagement = new Enterprise.EEComputerManagement();
 }
Exemplo n.º 2
0
        protected virtual void SetupBase(string strProductRoot = "", string strProductHive = "", int strProductCipherLength = 0)
        {
            // SetupBase("PCICharge", "EEPM", 2)
            SetProductInfo(strProductRoot, strProductHive, strProductCipherLength);

            m_objLog = new Enterprise.EELog(m_strProductRoot, m_strProductHive, m_strProductVersion, "");
            m_objComputerManagement = new Enterprise.EEComputerManagement();
            m_objLog.LogMessage("EEBase : SetupBase : Log Initialized", 35);
        }
Exemplo n.º 3
0
        // ###################################################################################
        // Constructors\Destructors
        // ###################################################################################
        public EEPMGWBase(int intGatewayID, string strGatewayURL, string strMerchantLogin, string strMerchantPassword, string strMerchantSecurityGUID, ref Enterprise.EELog objLog)
        {
            m_intGatewayID                  = intGatewayID;
            m_strGatewayResponseCode        = "";
            m_strGatewayResponseDescription = "";
            m_intEEPGResponseCode           = -1;
            m_strEEPGResponseDescription    = "";
            m_strGatewayURL                 = strGatewayURL;
            m_strMerchantLogin              = strMerchantLogin;
            m_strMerchantPassword           = strMerchantPassword;
            m_strMerchantSecurityGUID       = strMerchantSecurityGUID;
            m_objLog = objLog;

            m_objSetGW = null;

            m_objNSoftwareGW       = null;
            m_objNSoftwareCard     = null;
            m_objNSoftwareCustomer = null;

            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls | SecurityProtocolType.Ssl3;

            BuildSetGW();
            BuildScrubList();
        }
Exemplo n.º 4
0
        // ###################################################################################
        // Constructors\Destructors
        // ###################################################################################

        public CustomGWPostCustomer(ref Enterprise.EELog objLog) : base(ref objLog)
        {
            SetupPostValueArray();
        }
Exemplo n.º 5
0
        // ###################################################################################
        // Constructors\Destructors
        // ###################################################################################

        public CustomGWCard(ref Enterprise.EELog objLog)
        {
            m_objLog = objLog;
        }
Exemplo n.º 6
0
 // ###################################################################################
 // Constructors\Destructors
 // ###################################################################################
 public CustomGWGateway(ref Enterprise.EELog objLog)
 {
     m_objLog            = objLog;
     m_objResponse       = new CustomGWResponse();
     m_dictSpecialFields = new System.Collections.Generic.Dictionary <string, string>();
 }
Exemplo n.º 7
0
 public EEPGGWCCeBizCharge(int intGatewayID, string strGatewayURL, string strMerchantLogin, string strMerchantPassword, string strMerchantSecurityGUID, ref Enterprise.EELog objLog) : base(intGatewayID, strGatewayURL, strMerchantLogin, strMerchantPassword, strMerchantSecurityGUID, ref objLog)
 {
 }
Exemplo n.º 8
0
 public eBizChargeGateway(ref Enterprise.EELog objLog) : base(ref objLog)
 {
     Reset();
     m_service = GetEbizServiceClient();
 }
Exemplo n.º 9
0
 public eBizChargeCustomer(ref Enterprise.EELog objLog) : base(ref objLog)
 {
 }
Exemplo n.º 10
0
 public eBizChargeCard(ref Enterprise.EELog objLog) : base(ref objLog)
 {
     SetupPostValueArray();
 }