Пример #1
0
        public uint DSR_Export(uint pCompany,
                               string pSubj,
                               string pFrom,
                               string pTo,
                               string pParam1,
                               string pParam2,
                               uint pPackageId)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_Export from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_Export(pCompany, pSubj, pFrom, pTo, pParam1, pParam2, pPackageId));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_Export): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #2
0
        public uint DSR_GetOutboxMessages(uint pCompany,
                                          uint pPackageID,
                                          sbyte pStatus,
                                          DateTime pDate,
                                          uint pMaxRecords,
                                          out object pMessages)
        {
            pMessages = null;

            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_GetOutboxMessages from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_GetOutboxMessages(pCompany, pPackageID, pStatus, pDate, pMaxRecords, out pMessages));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_GetOutboxMessages): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #3
0
        public void DSR_SendLog(string pMail)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_SendLog from within the remoting server. Guid: " + instanceID.ToString());
                }

                GlobalDSR.WithDSR().DSR_SendLog(pMail);
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_SendLog): " + err.Message);
            }
        }
Пример #4
0
        public uint DSR_ExProductType()
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_ExProductType from within the remoting server. Guid: " + instanceID.ToString());
                }
                return(GlobalDSR.WithDSR().DSR_ExProductType());
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_ExProductType): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #5
0
        public uint DSR_AddNewUser(string pUserName, string pUserLogin, string pUserPassword)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_AddNewUser from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_AddNewUser(pUserName, pUserLogin, pUserPassword));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_AddNewUser): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #6
0
        public uint DSR_SetDailySchedule(Guid pGuid, uint pCompany, string pSubj, string pFrom, string pTo, string pParam1, string pParam2, uint pPackageId, DateTime pStartDate, DateTime pEndDate, DateTime pStartTime, sbyte pAllDays, sbyte pWeekDays, sbyte pEveryDay)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_SetDailySchedule from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_SetDailySchedule(pGuid, pCompany, pSubj, pFrom, pTo, pParam1, pParam2, pPackageId, pStartDate, pEndDate, pStartTime, pAllDays, pWeekDays, pEveryDay));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_SetDailySchedule): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #7
0
        public string DSR_TranslateErrorCode(uint pErrorCode)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_TranslateErrorCode from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_TranslateErrorCode(pErrorCode));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_TranslateErrorCode): " + err.Message);
                return(string.Empty);
            }
        }
Пример #8
0
        public uint DSR_AddNewContact(string pContactName, string pContactMail, uint pContactCompany)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_AddNewContact from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_AddNewContact(pContactName, pContactMail, pContactCompany));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_AddNewContact): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #9
0
        protected override void OnStart(string[] args)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            if (args.Length > 0)
            {
                if (args[0].ToUpper().Equals("WITHLOG"))
                {
                    Program.LogEvents = true;
                }
            }

            try
            {
                // Set up the Remoting channel
                if (Program.LogEvents)
                {
                    debug.WriteLog("STARTING DSR WRAPPER SERVICE");
                    debug.WriteLog("About to create TCP server channel on " + ConfigurationManager.AppSettings["PortNumber"].ToString());
                }
                _tcpServer = new TcpServerChannel(Convert.ToInt32(ConfigurationManager.AppSettings["PortNumber"]));

                if (Program.LogEvents)
                {
                    debug.WriteLog("About to register TCP server channel");
                }

                ChannelServices.RegisterChannel(_tcpServer, false);

                if (Program.LogEvents)
                {
                    debug.WriteLog("About to register well known service type: IWrapperDSR");
                }

                RemotingConfiguration.RegisterWellKnownServiceType(typeof(WrapperDSR), "WrapperDSR", WellKnownObjectMode.Singleton);

                GlobalDSR.DsrInitialize();
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (OnStart): " + err.Message);
            }
        }
Пример #10
0
        public uint DSR_ViewCISResponse(Guid pOutboxGuid, Guid pFileGuid, out string pXML)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            pXML = "";
            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_ViewCISResponse from within the remoting server. Guid: " + instanceID.ToString());
                }
                return(GlobalDSR.WithDSR().DSR_ViewCISResponse(pOutboxGuid, pFileGuid, out pXML));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_ViewCISResponse): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #11
0
        public uint DSR_DenySyncRequest(uint pCompany, Guid pGuid)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_DenySyncRequest from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_DenySyncRequest(pCompany, pGuid));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_DenySyncRequest): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #12
0
        public uint DSR_GetInboxXml(Guid pGuid, uint pOrder, out string pXML)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            pXML = "";
            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_GetInboxXml from within the remoting server. Guid: " + instanceID.ToString());
                }
                return(GlobalDSR.WithDSR().DSR_GetInboxXml(pGuid, pOrder, out pXML));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_GetInboxXml): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #13
0
        public uint DSR_CheckDripFeed(uint pCompany, out uint pStatus)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            pStatus = 0;
            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_CheckDripFeed from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_CheckDripFeed(pCompany, out pStatus));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_CheckDripFeed): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #14
0
        public uint DSR_TotalOutboxMessages(uint pCompany, out uint pMsgCount)
        {
            pMsgCount = 0;
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_TotalOutboxMessages from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_TotalOutboxMessages(pCompany, out pMsgCount));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_TotalOutboxMessages): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #15
0
        public uint DSR_GetMailSettings(out string pXml)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            pXml = "";
            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_GetMailSettings from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_GetMailSettings(out pXml));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_UpdateMailSettings): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #16
0
        public uint DSR_GetContacts(out object pContacts)
        {
            pContacts = string.Empty;
            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_GetContacts from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_GetContacts(out pContacts));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_GetContacts): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #17
0
        public uint DSR_NewInboxMessage(uint pMaxRecords, out object pMessages)
        {
            pMessages = null;

            DebugFileCtrl debug = new DebugFileCtrl(false);

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_NewInboxMessage from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_NewInboxMessage(pMaxRecords, out pMessages));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_NewInboxMessage): " + err.Message);
                return(GENERIC_FAIL);
            }
        }
Пример #18
0
        public uint DSR_GetDripFeedParams(uint pCompany, out string pPeriodYear1, out string pPeriodYear2)
        {
            DebugFileCtrl debug = new DebugFileCtrl(false);

            pPeriodYear1 = "";
            pPeriodYear2 = "";

            try
            {
                if (Program.LogEvents)
                {
                    debug.WriteLog("Calling DSR_GetDripFeedParams from within the remoting server. Guid: " + instanceID.ToString());
                }

                return(GlobalDSR.WithDSR().DSR_GetDripFeedParams(pCompany, out pPeriodYear1, out pPeriodYear2));
            }
            catch (System.Exception err)
            {
                debug.WriteLog("EXCEPTION (DSR_GetDripFeedParams): " + err.Message);
                return(GENERIC_FAIL);
            }
        }