Click here to Skip to main content
Click here to Skip to main content

Simple Reverse Proxy in C# 2.0 (description and deployment)

By , 28 Nov 2008
 

Structure of Reverse Proxy

Introduction

This article describes how to develop a Reverse Proxy in C# using the IIS HTTPHandlers, not manipulating incoming HTTP requests, but only by transferring all requests to the internal server (Remote Server).

Background

Wikipedia says, "A reverse proxy or surrogate is a proxy server that is installed within the neighborhood of one or more servers. Typically, reverse proxies are used in front of Web servers. All connections coming from the Internet addressed to one of the Web servers are routed through the proxy server, which may either deal with the request itself, or pass the request wholly or partially to the main web servers. A reverse proxy dispatches in-bound network traffic to a set of servers, presenting a single interface to the caller. (...)".

To write the code, I was inspired by articles of Vincent Brossier and Paramesh Gunasekaran here at CodeProject.

Using the Code

The code below is the core of the reverse proxy server.

The class ReverseProxy is the core of the application managing the communication between the navigator and the proxy server... points [1] and [4] on the above picture. The class RemoteServer manages communication between the proxy server (front-end to Internet) and the remote server (internal server)... points [2] and [3] on the above picture.

The class ReverseProxy:

  1. Creates a connection to the remote server to redirect all requests.
  2. Creates a request with the same data in the navigator request.
  3. Sends the request to the remote server and returns the response.
  4. Sends the response to the client (and handles cookies, if available).
  5. Closes streams
namespace ReverseProxy
{
    /// <summary>
    /// Handler all Client's requests and deliver the web site
    /// </summary>
    public class ReverseProxy : IHttpHandler, 
                 System.Web.SessionState.IRequiresSessionState
    {
        /// <summary>
        /// Method calls when client request the server
        /// </summary>
        /// <param name="context">HTTP context for client</param>
        public void ProcessRequest(HttpContext context)
        {
        
            // Create a connexion to the Remote Server to redirect all requests
            RemoteServer server = new RemoteServer(context);
            
            // Create a request with same data in navigator request
            HttpWebRequest request = server.GetRequest();

            // Send the request to the remote server and return the response
            HttpWebResponse response = server.GetResponse(request);
            byte[] responseData = server.GetResponseStreamBytes(response);

            // Send the response to client
            context.Response.ContentEncoding = Encoding.UTF8;
            context.Response.ContentType = response.ContentType;
            context.Response.OutputStream.Write(responseData, 0, 
                             responseData.Length);

            // Handle cookies to navigator
            server.SetContextCookies(response);
            
            // Close streams
            response.Close();
            context.Response.End();

        }
        
        public bool IsReusable
        {
            get { return true; }
        }

    }
}

The class RemoteServer contains many methods:

  • Constructor to initialize the communication with the remote server (defined by the URL).
  • GetRequest creates an HttpWebRequest object connected to the remote server and sends all "parameters" (arguments, POST data, cookies, ...).
  • GetResponse uses the previous object and gets the response from the remote server.
  • GetResponseStreamBytes converts the HttpWebResponse (returned by the previous method) to an array of bytes.
  • SetContextCookies sends cookies to the navigator context.
namespace ReverseProxy
{
    /// <summary>
    /// Manage communication between the proxy server and the remote server
    /// </summary>
    internal class RemoteServer
    {
        string _remoteUrl;
        HttpContext _context;

        /// <summary>
        /// Initialize the communication with the Remote Server
        /// </summary>
        /// <param name="context">Context </param>
        public RemoteServer(HttpContext context)
        {
            _context = context;

            // Convert the URL received from navigator to URL for server
            string serverUrl = ConfigurationSettings.AppSettings["RemoteWebSite"];
            _remoteUrl = context.Request.Url.AbsoluteUri.Replace("http://" + 
                         context.Request.Url.Host + 
                         context.Request.ApplicationPath, serverUrl);
        }

        /// <summary>
        /// Return address to communicate to the remote server
        /// </summary>
        public string RemoteUrl
        {
            get
            {
                return _remoteUrl;
            }
        }

        /// <summary>
        /// Create a request the remote server
        /// </summary>
        /// <returns>Request to send to the server </returns>
        public HttpWebRequest GetRequest()
        {
            CookieContainer cookieContainer = new CookieContainer();

            // Create a request to the server
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(_remoteUrl);

            // Set some options
            request.Method = _context.Request.HttpMethod;
            request.UserAgent = _context.Request.UserAgent;
            request.KeepAlive = true;
            request.CookieContainer = cookieContainer;

            // Send Cookie extracted from the incoming request
            for (int i = 0; i < _context.Request.Cookies.Count; i++)
            {
                HttpCookie navigatorCookie = _context.Request.Cookies[i];
                Cookie c = new Cookie(navigatorCookie.Name, navigatorCookie.Value);
                c.Domain = new Uri(_remoteUrl).Host;
                c.Expires = navigatorCookie.Expires;
                c.HttpOnly = navigatorCookie.HttpOnly;
                c.Path = navigatorCookie.Path;
                c.Secure = navigatorCookie.Secure;
                cookieContainer.Add(c);
            }

            // For POST, write the post data extracted from the incoming request
            if (request.Method == "POST")
            {
                Stream clientStream = _context.Request.InputStream;
                byte[] clientPostData = new byte[_context.Request.InputStream.Length];
                clientStream.Read(clientPostData, 0, 
                                 (int)_context.Request.InputStream.Length);

                request.ContentType = _context.Request.ContentType;
                request.ContentLength = clientPostData.Length;
                Stream stream = request.GetRequestStream();
                stream.Write(clientPostData, 0, clientPostData.Length);
                stream.Close();
            }

            return request;

        }

        /// <summary>
        /// Send the request to the remote server and return the response
        /// </summary>
        /// <param name="request">Request to send to the server </param>
        /// <returns>Response received from the remote server
        ///           or null if page not found </returns>
        public HttpWebResponse GetResponse(HttpWebRequest request)
        {
            HttpWebResponse response;

            try
            {
                response = (HttpWebResponse)request.GetResponse();
            }
            catch (System.Net.WebException)
            {                
                // Send 404 to client 
                _context.Response.StatusCode = 404;
                _context.Response.StatusDescription = "Page Not Found";
                _context.Response.Write("Page not found");
                _context.Response.End();
                return null;
            }

            return response;
        }

        /// <summary>
        /// Return the response in bytes array format
        /// </summary>
        /// <param name="response">Response received
        ///             from the remote server </param>
        /// <returns>Response in bytes </returns>
        public byte[] GetResponseStreamBytes(HttpWebResponse response)
        {            
            int bufferSize = 256;
            byte[] buffer = new byte[bufferSize];
            Stream responseStream;
            MemoryStream memoryStream = new MemoryStream();
            int remoteResponseCount;
            byte[] responseData;

            responseStream = response.GetResponseStream();
            remoteResponseCount = responseStream.Read(buffer, 0, bufferSize);

            while (remoteResponseCount > 0)
            {
                memoryStream.Write(buffer, 0, remoteResponseCount);
                remoteResponseCount = responseStream.Read(buffer, 0, bufferSize);
            }

            responseData = memoryStream.ToArray();

            memoryStream.Close();            
            responseStream.Close();

            memoryStream.Dispose();
            responseStream.Dispose();

            return responseData;
        }

        /// <summary>
        /// Set cookies received from remote server to response of navigator
        /// </summary>
        /// <param name="response">Response received
        ///                 from the remote server</param>
        public void SetContextCookies(HttpWebResponse response)
        {
            _context.Response.Cookies.Clear();

            foreach (Cookie receivedCookie in response.Cookies)
            {                
                HttpCookie c = new HttpCookie(receivedCookie.Name, 
                                   receivedCookie.Value);
                c.Domain = _context.Request.Url.Host;
                c.Expires = receivedCookie.Expires;
                c.HttpOnly = receivedCookie.HttpOnly;
                c.Path = receivedCookie.Path;
                c.Secure = receivedCookie.Secure;
                _context.Response.Cookies.Add(c);
            }
        }
    }
}

Sample "Web.Config" File

The config file sets where all the requests received by the reverse proxy server will be sent (for example: 192.168.1.90 on port 81).

<configuration>
  
  <appSettings>    
    <add key="RemoteWebSite" value="http://192.168.1.90:81" />
  </appSettings>
  
  <system.web>
    <httpHandlers>
      <add verb="*" path="*" 
          type="ReverseProxy.ReverseProxy, ReverseProxy"/>
    </httpHandlers>
  </system.web>
  
</configuration>

Deployment

In order to setup the reverse proxy server in IIS, the following steps need to be performed:

  1. Compile the project to get the .NET assemblies, and create a web.config configuration file.
  2. Create a new virtual directory (or a new website) in IIS, and copy the .NET assemblies into the "bin" folder, and the web.config to the root folder.
  3. Right-click the virtual directory just created, and go to "Properties / Home Directory / Configuration > Mappings" (see picture below), and add "wildcard application maps" to "aspnet_isapi.dll" (uncheck Verify that file exists).
  4. Click "OK" until you close the "Properties" dialog box.
  5. Set the correct IP of the remote server in web.config.

IIS Configuration

Points of Interest

This article explains how HTTPHandler works and how to capture the flow received by the web server IIS and transfer it (unchanged) to another server.

History

  • November 21, 2008 - Baseline (version 1.0).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Denis Voituron
Team Leader Trasys
Belgium Belgium
Member
I am a trained civil engineer in computer science. After a few years as project manager of multimedia applications, I set up my IT company for almost 10 years. We created a CMS, software and websites for companies and public administrations. We received the award for “best company” for this job.
 
So, I obtained skills in several areas, and expertise in architecture, development and methodologies (MSF, Oracle, SQL Server, .NET).
 
I also have several years of experience in training for architecture and design software, database administration and network architecture of Windows.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionNice work, but how do you handle 304 code?memberHardy Wang5 Dec '12 - 14:56 
If I request static contents, (image, CSS or JS)
 
			try {
				response = (HttpWebResponse)request.GetResponse();
			} catch (WebException ex) {
			}
 
The exception handler will capture protocol error, with error code 304. In this case we should send back to broswer the same code. But not handled in your version yet.
My open source project Sea Turtle Batch Image Processor
Hardy

QuestionHow is this working?memberTech12329 Nov '12 - 10:53 
How we can access this site. Where should we insert the ReverseProxyDemo.dll ?
I played with HttpHandlers in HandlerMappings of the newly created site. But no use.
 
Can you please provide step by step how to access the remotesite ?
QuestionError could not load type 'ReverseProxy,.ReverseProxy' from assemblymemberRussellJacobs12 Apr '12 - 4:48 
I have followed the steps and I receive this error could not load type 'ReverseProxy,.ReverseProxy' from assembly. Relatively new to attempting this but could use assistance.
AnswerRe: Error could not load type 'ReverseProxy,.ReverseProxy' from assemblymemberGio Bejarasco8 Jun '12 - 9:01 
Oops, I think there's a typo over there.
Shouldn't it be "ReverseProxy, ReverseProxy"?
 
In my experience, it's always safe to specify the full name + assembly. Something like this
type="MyNamespace.MyType, MyAssembly"
QuestionIssues with the urlmemberMaggi121 Sep '11 - 5:02 
Hello,
 
This article provides a very good insight. I did follow the instructions to set up the reverse proxy,but, unable to get it working. My issue is with identifying the correct url.
 
For example, the Reverse Proxy (handler) resides on server1:8080 and the remote server on which my application resides is server2:8080. What should be the final url?
 
http://server1:8080/handler/server2:8080/WebApp/Default.aspx
 
Is this correct assuming that WebApp/Default.aspx is the link to my application. Any suggestions in this context will help.
 
Thanks
AnswerRe: Issues with the urlmemberTech12329 Nov '12 - 10:51 
How we can access this site. Where should we insert the ReverseProxyDemo.dll ?
I played with HttpHandlers in HandlerMappings of the newly created site. But no use.
 
Can you please provide step by step how to access the remotesite ?
GeneralMy vote of 5memberMember 35036912 Aug '10 - 8:16 
Code is clean, follows good coding standards, and the design looks good. An improvement over similar examples of reverse HTTP proxies.
GeneralAdd/Edit this code to make error messages much more descriptivemembertwebb721 Jul '09 - 18:42 
If you love this software proxy (which is great for mocking what happens in hardware) then you've probably seen that whenever an web exception like 500 happens, all you get is the hard coded 404 message defined in the try...catch... in this article.
 
        public HttpWebResponse GetResponse(HttpWebRequest request)
        {
            HttpWebResponse response = null;
 
            try
            {
                response = (HttpWebResponse)request.GetResponse();
            }
            catch (System.Net.WebException e)
            {                
                // Send exception to client 
                _context.Response.StatusCode = (int)((HttpWebResponse)e.Response).StatusCode;
                _context.Response.StatusDescription = e.Status.ToString();
                Stream tResponseStream = e.Response.GetResponseStream();
                StreamReader tResponseStreamReader = new StreamReader(tResponseStream);
                _context.Response.Write(tResponseStreamReader.ReadToEnd());
                _context.Response.End();
 
                return response;
            }
 
            return response;
        }
 
Change the response code to this and the errors from the proxy target will come back to your browser.
 
What is a Jim?

GeneralRe: Add/Edit this code to make error messages much more descriptivememberAndreag711 Jun '11 - 1:19 
        public HttpWebResponse GetResponse(HttpWebRequest request)
        {
            HttpWebResponse response;
 
            try
            {
                response = (HttpWebResponse)request.GetResponse();
            }
            catch (System.Net.WebException ex)
            {
                response = ex.Response as HttpWebResponse;
            }
 
            return response;
        }

QuestionDifferent portmemberDeanBlans26 May '09 - 9:35 
I need to server this on a different port, say 88. It does not work from a different port, any ideas?

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 28 Nov 2008
Article Copyright 2008 by Denis Voituron
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid