Exemple #1
0
 public SOAPReceiver(SOAPServerConfig cfg, string cfgFile, ILog log, bool enableSessionStatusLog)
 {
     _cfg                    = cfg;
     _log                    = log;
     _configFile             = cfgFile;
     _enableSessionStatusLog = enableSessionStatusLog;
 }
Exemple #2
0
        internal void CreateDefaultConfig()
        {
            try
            {
                SOAPServerConfig cfg = new SOAPServerConfig();
                ConfigMgr.Config = cfg;

                if (!ConfigMgr.Save())
                {
                    Log.Write(ConfigMgr.LastError);
                }
            }
            catch (Exception err)
            {
                Log.Write(err);
            }
            return;
        }
Exemple #3
0
 public SOAPReceiver(SOAPServerConfig cfg, string cfgFile, ILog log)
 {
     _cfg        = cfg;
     _log        = log;
     _configFile = cfgFile;
 }