Click here to Skip to main content
15,885,278 members
Articles / General Programming / Performance

Tweaking WCF to build highly scalable async REST API

Rate me:
Please Sign up or sign in to vote.
4.92/5 (35 votes)
31 Jul 2011CPOL25 min read 118.5K   1.2K   85  
You can build async REST API using WCF but due to some bug in WCF implementation it does not scale as you would want it to. Here's my journey with Microsoft's WCF team to explore the problem and find the right fix.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace AsyncServiceLibrary
{
    public class CompletedAsyncResult<T> : IAsyncResult
    {
        private T CustomData;
        private object wcfState;

        public CompletedAsyncResult(T data, object wcfState)
        {
            this.CustomData = data;
            this.wcfState = wcfState;
        }

        public T Data
        {
            get
            {
                return CustomData;
            }
        }

        #region IAsyncResult Members
        public object AsyncState
        {
            get
            {
                return this.wcfState;
            }
        }

        public WaitHandle AsyncWaitHandle
        {
            get
            {
                throw new Exception("The method or operation is not implemented.");
            }
        }

        public bool CompletedSynchronously
        {
            get
            {
                return true;
            }
        }

        public bool IsCompleted
        {
            get
            {
                return true;
            }
        }
        #endregion
    }
    
}

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 Code Project Open License (CPOL)


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions