| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- //
- // System.Runtime.Remoting.Channels.Http.HttpRemotingHandler
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.IO;
- using System.Web;
- namespace System.Runtime.Remoting.Channels.Http
- {
- public class HttpRemotingHandler : IHttpHandler
- {
- HttpServerTransportSink transportSink;
-
- public HttpRemotingHandler ()
- {
- }
- [MonoTODO]
- public HttpRemotingHandler (Type type, object srvID)
- {
- throw new NotImplementedException ();
- }
- internal HttpRemotingHandler (HttpServerTransportSink sink)
- {
- transportSink = sink;
- }
- public bool IsReusable {
- get { return true; }
- }
- public void ProcessRequest (HttpContext context)
- {
- HttpRequest request = context.Request;
- HttpResponse response = context.Response;
-
- // Create transport headers for the request
-
- TransportHeaders theaders = new TransportHeaders();
- string objectUri = request.RawUrl;
- objectUri = objectUri.Substring (request.ApplicationPath.Length); // application path is not part of the uri
-
- theaders ["__RequestUri"] = objectUri;
- theaders ["Content-Type"] = request.ContentType;
- theaders ["__RequestVerb"]= request.HttpMethod;
- theaders ["__HttpVersion"] = request.Headers ["http-version"];
- theaders ["User-Agent"] = request.UserAgent;
- theaders ["Host"] = request.Headers ["host"];
- ITransportHeaders responseHeaders;
- Stream responseStream;
-
- // Dispatch the request
-
- transportSink.DispatchRequest (request.InputStream, theaders, out responseStream, out responseHeaders);
- // Write the response
-
- if (responseHeaders != null && responseHeaders["__HttpStatusCode"] != null)
- {
- // The formatter can set the status code
- response.StatusCode = int.Parse ((string) responseHeaders["__HttpStatusCode"]);
- response.StatusDescription = (string) responseHeaders["__HttpReasonPhrase"];
- }
-
- byte[] bodyBuffer = bodyBuffer = new byte [responseStream.Length];
- responseStream.Seek (0, SeekOrigin.Begin);
-
- int nr = 0;
- while (nr < responseStream.Length)
- nr += responseStream.Read (bodyBuffer, nr, bodyBuffer.Length - nr);
-
- response.OutputStream.Write (bodyBuffer, 0, bodyBuffer.Length);
- }
- }
- }
|