Click here to Skip to main content
15,893,668 members
Articles / DevOps / Load Testing

Measuring and Monitoring WCF Web Service Performance

Rate me:
Please Sign up or sign in to vote.
5.00/5 (17 votes)
4 Oct 2012GPL310 min read 55.5K   2.2K   47  
Using ServiceMon to obtain performance statistics for web services
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Text;

namespace Kaleida.ServiceMonitor.Model.Runtime
{
    public static class ReflectionExtensions
    {
        public static bool DerivesFrom(this Type type, Type testAncestor)
        {
            return testAncestor.IsAssignableFrom(type);
        }

        public static bool HasPublicFullyStringParameterisedConstructor(this Type type, int count)
        {
            return GetPublicInstanceConstructors(type).Any(i => AllStringParameters(i) && i.GetParameters().Count() == count);
        }

        public static bool HasPublicFullyStringParameterisedConstructor(this Type type)
        {
            return GetPublicInstanceConstructors(type).Any(AllStringParameters);
        }

        public static IEnumerable<ConstructorInfo> GetOperationConstructors(this Type type)
        {
            return GetPublicInstanceConstructors(type).Where(AllStringParameters);
        }

        public static bool HasPublicDefaultConstructor(this Type type)
        {
            var defaultConstructor = type.GetConstructor(Type.EmptyTypes);
            return defaultConstructor != null && defaultConstructor.IsPublic;
        }

        private static bool AllStringParameters(this ConstructorInfo i)
        {
            return i.GetParameters().All(p => p.ParameterType == typeof(string));
        }

        private static IEnumerable<ConstructorInfo> GetPublicInstanceConstructors(this Type type)
        {
            return type.GetConstructors(BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy);
        }

        internal static string ToPascalCase(this string name)
        {
            var words = name.Split('-');
            return string.Concat(words.Select(i => CultureInfo.InvariantCulture.TextInfo.ToTitleCase(i)));
        }

        internal static string ToDashSeparated(this string name)
        {
            var dashed = new StringBuilder();

            for (int i = 0; i < name.Length; i++ )
            {
                var character = name[i];
                if (Char.IsLower(character))
                    dashed.Append(character);
                else
                {
                    if (i > 0)
                        dashed.AppendFormat("-");

                    dashed.Append(Char.ToLower(character));
                }
            }

            return dashed.ToString();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect BlackJet Software Ltd
United Kingdom United Kingdom
Stuart Wheelwright is the Principal Architect and Software Developer at BlackJet Software Ltd.

He has over 16 years commercial experience producing robust, maintainable, web-based solutions and bespoke systems for Microsoft platforms.

His latest project is Shopping UK, an elegantly simple shopping list for iPhone.

Comments and Discussions