protected override void Process()
        {
            SBLicenseManager.TElSBLicenseManager m = new SBLicenseManager.TElSBLicenseManager();
            m.LicenseKey = "8F1317CD48AC4E68BABA5E339D8B365414D7ADA0289CA037E9074D29AD95FF3EC5D796BEFF0FBADB3BD82F48644C9EB810D9B5A305E0D2A1885C874D8BF974B9608CE918113FBE2AA5EEF8264C93B25ABEA98715DB4AD265F47CE02FC9952D69F2C3530B6ABAAA4C43B45E7EF6A8A0646DA038E34FBFB629C2BF0E83C6B348726E622EBD52CA05CF74C68F1279849CCD0C13EA673916BA42684015D658B8E7626F15BD826A4340EDB36CE55791A051FDBCF9FA1456C3B5008AD9990A0185C0EA3B19F9938CB7DA1FE82736ED4C7A566D4BFD53411E8380F4B020CB50E762520EFAE190836FD253B00DB18D4A485C7DC918AA4DCEC856331DD231CC8DC9C741C3";


            using (var unit = GetUnitOfWork())
            {
                foreach (Connector connector in base.Connectors.Where(c => ((ConnectorType)c.ConnectorType).Has(ConnectorType.WebAssortment)))
                {
#if DEBUG
                    if (connector.ConnectorID != 6)
                    {
                        continue;
                    }
#endif
                    string singleProduct = string.Empty;
                    try
                    {
                        log.DebugFormat("Start Magento Image Synchronization for {0}", connector.Name);


                        if (connector.ConnectorSystemType == null)
                        {
                            log.AuditError(string.Format("No Connector System Settings found for {0}, Magento Export can not be executed!", connector.Name), "Magento Export");
                            continue;
                        }

                        var type = GetType().ToString();

                        string serializationPath = @"C:\Magento";//default
                        var    config            = GetConfiguration();
                        if (config.AppSettings.Settings["AssortmentSerializationPath"] != null)
                        {
                            serializationPath = config.AppSettings.Settings["AssortmentSerializationPath"].Value;
                        }

                        var connectorSerializationPath = serializationPath;
                        if (!Directory.Exists(connectorSerializationPath))
                        {
                            Directory.CreateDirectory(connectorSerializationPath);
                        }

//#if DEBUG
//            connector.Connection = "server=127.0.0.1;User Id=root;password=Om3Aih7aohQu9uPeahP4Ul3p;database=coolcat;Connect Timeout=30000;Default Command Timeout=30000;port=6014";
//#endif
                        ImageExporter imageExporter = new ImageExporter(connector, log, GetConfiguration(), connectorSerializationPath);

                        imageExporter.Execute();
                    }
                    catch (Exception ex)
                    {
                        log.Error("Error in Magento Plugin", ex);
                    }

                    var triggerIndex = connector.ConnectorSettings.GetValueByKey <bool>("ImageTriggerIndexing", false);

                    if (triggerIndex)
                    {
                        log.Info("Will place trigger for indexing");
                        try
                        {
                            var info = SftpHelper.GetFtpTriggerIndexInfo(connector);

                            IndexerHelper hlp = new IndexerHelper(info, "cache");
                            hlp.CreateImageTrigger();

                            log.Info("Placed a trigger file");
                        }
                        catch (Exception e)
                        {
                            log.AuditError("Couldnt upload a trigger file", e, "Magento export");
                        }
                    }

                    log.DebugFormat("Finished Magento Image Synchronization For {0}", connector.Name);
                }
            }
        }