コード例 #1
0
ファイル: FileChannel.cs プロジェクト: rajeshkdev/FileChannel
        public bool SendNotification(BizTalkEnvironment environment, Alarm alarm, string globalProperties, Dictionary <MonitorGroupTypeName, MonitorGroupData> notifications)
        {
            //Construct Message
            string message = string.Empty;

            message += String.Format("\nAlarm Name: {0} \n\nAlarm Desc: {1} \n", alarm.Name, alarm.Description);
            message += "\n----------------------------------------------------------------------------------------------------\n";
            message += String.Format("\nEnvironment Name: {0} \n\nMgmt Sql Instance Name: {1} \nMgmt Sql Db Name: {2}\n", environment.Name, environment.MgmtSqlDbName, environment.MgmtSqlInstanceName);
            message += "\n----------------------------------------------------------------------------------------------------\n";

            // Change the Message Type and Format based on your need.
            BT360Helper helper = new BT360Helper(notifications, environment, alarm, MessageType.ConsolidatedMessage, MessageFormat.Text);

            message += helper.GetNotificationMessage();

            //Read configured properties
            XNamespace bsd   = XNamespace.Get("http://www.biztalk360.com/alarms/notification/basetypes");
            XNamespace prop  = XNamespace.Get("http://www.biztalk360.com/alarms/notification/properties");
            XNamespace xmlns = XNamespace.Get("http://www.biztalk360.com/alarms/notification/basetypes");

            string fileFolder = string.Empty; string folderOverride = string.Empty;

            //Alarm Properties
            XDocument almProps = XDocument.Load(new StringReader(alarm.AlarmProperties));

            foreach (var element in almProps.Descendants(bsd + "TextBox"))
            {
                if (element.Attribute("Name").Value == "file-override-path")
                {
                    folderOverride = element.Attribute("Value").Value;
                }
            }

            //Global Properties
            XDocument globalProps = XDocument.Load(new StringReader(globalProperties));

            foreach (var element in globalProps.Descendants(bsd + "TextBox"))
            {
                if (element.Attribute("Name").Value == "file-path")
                {
                    fileFolder = element.Attribute("Value").Value;
                }
            }

            //Save to Disk
            string filePath     = string.IsNullOrEmpty(folderOverride) ? fileFolder : folderOverride;
            string fileLocation = Path.Combine(filePath, Guid.NewGuid().ToString(), ".txt");

            using (FileStream fs = new FileStream(fileLocation, FileMode.CreateNew))
            {
                fs.Write(Encoding.UTF8.GetBytes(message), 0, message.Length);
            }

            return(true);
        }
コード例 #2
0
        public bool SendNotification(BizTalkEnvironment environment, Alarm alarm, string globalProperties, Dictionary <MonitorGroupTypeName, MonitorGroupData> notifications)
        {
            //Construct Message
            string message = string.Empty;

            message += String.Format("\nAlarm Name: {0} \n\nAlarm Desc: {1} \n", alarm.Name, alarm.Description);
            message += "\n----------------------------------------------------------------------------------------------------\n";
            message += String.Format("\nEnvironment Name: {0} \n\nMgmt Sql Instance Name: {1} \nMgmt Sql Db Name: {2}\n", environment.Name, environment.MgmtSqlDbName, environment.MgmtSqlInstanceName);
            message += "\n----------------------------------------------------------------------------------------------------\n";

            // Change the Message Type and Format based on your need.
            BT360Helper helper = new BT360Helper(notifications, environment, alarm, MessageType.ConsolidatedMessage, MessageFormat.Text);

            message += helper.GetNotificationMessage();

            //Read configured properties
            XNamespace bsd   = XNamespace.Get("http://www.biztalk360.com/alarms/notification/basetypes");
            XNamespace prop  = XNamespace.Get("http://www.biztalk360.com/alarms/notification/properties");
            XNamespace xmlns = XNamespace.Get("http://www.biztalk360.com/alarms/notification/basetypes");

            //Alarm Properties
            XDocument almProps = XDocument.Load(new StringReader(alarm.AlarmProperties));
            string    alarmName = string.Empty; string channelName = string.Empty;

            // To read the various Properties, change the Types Like -- CheckBox, DropDownBox
            foreach (var element in almProps.Descendants(bsd + "TextBox"))
            {
                // Provide Name of the Element
                if (element.Attribute("Name").Value == "alarm-Name")
                {
                    alarmName = element.Attribute("Value").Value;
                }
            }

            //Global Properties
            XDocument globalProps = XDocument.Load(new StringReader(globalProperties));

            foreach (var element in globalProps.Descendants(bsd + "TextBox"))
            {
                // Provide Name of the Element
                if (element.Attribute("Name").Value == "channel-Name")
                {
                    channelName = element.Attribute("Value").Value;
                }
            }

            // Save / Send  -- Your Operation Goes here

            //Returns the status
            return(true);
        }
コード例 #3
0
ファイル: FileChannel.cs プロジェクト: radtek/FileChannel
        public bool SendNotification(BizTalkEnvironment environment, Alarm alarm, string globalProperties, Dictionary <MonitorGroupTypeName, MonitorGroupData> notifications)
        {
            try
            {
                //Construct Message
                var message = string.Empty;
                message += string.Format("\nAlarm Name: {0} \n\nAlarm Desc: {1} \n", alarm.Name, alarm.Description);
                message += "\n----------------------------------------------------------------------------------------------------\n";
                message += string.Format("\nEnvironment Name: {0} \n\nMgmt Sql Instance Name: {1} \nMgmt Sql Db Name: {2}\n", environment.Name, environment.MgmtSqlDbName, environment.MgmtSqlInstanceName);
                message += "\n----------------------------------------------------------------------------------------------------\n";

                // Change the Message Type and Format based on your need.
                var helper = new BT360Helper(notifications, environment, alarm, MessageType.ConsolidatedMessage, MessageFormat.Text);
                message += helper.GetNotificationMessage();

                //Read configured properties
                var bsd = XNamespace.Get("http://www.biztalk360.com/alarms/notification/basetypes");

                var fileFolder = string.Empty; var folderOverride = string.Empty;

                //Alarm Properties
                var almProps = XDocument.Load(new StringReader(alarm.AlarmProperties));
                foreach (var element in almProps.Descendants(bsd + "TextBox"))
                {
                    var xAttribute = element.Attribute("Name");
                    if (xAttribute == null || xAttribute.Value != "file-override-path")
                    {
                        continue;
                    }
                    var attribute = element.Attribute("Value");
                    if (attribute != null)
                    {
                        folderOverride = attribute.Value;
                    }
                }

                //Global Properties
                var globalProps = XDocument.Load(new StringReader(globalProperties));
                foreach (var element in globalProps.Descendants(bsd + "TextBox"))
                {
                    var xAttribute = element.Attribute("Name");
                    if (xAttribute == null || xAttribute.Value != "file-path")
                    {
                        continue;
                    }
                    var attribute = element.Attribute("Value");
                    if (attribute != null)
                    {
                        fileFolder = attribute.Value;
                    }
                }

                //Save to Disk
                var filePath     = string.IsNullOrEmpty(folderOverride) ? fileFolder : folderOverride;
                var fileLocation = Path.Combine(filePath, Guid.NewGuid() + ".txt");
                using (var fs = new FileStream(fileLocation, FileMode.CreateNew))
                {
                    fs.Write(Encoding.UTF8.GetBytes(message), 0, message.Length);
                }
                LoggingHelper.Info("File notification completed successfully");
                return(true);
            }
            catch (Exception ex)
            {
                LoggingHelper.Info("File notification failed. Error " + ex.Message);
                return(false);
                // ignored
            }
        }