| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- //
- // System.Web.Services.Protocols.WebServiceHandlerFactory.cs
- //
- // Authors:
- // Tim Coleman ([email protected])
- // Dave Bettin ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- // Lluis Sanchez Gual ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- // Copyright (c) 2003 Ximian, Inc. (http://www.ximian.com)
- //
- using System.IO;
- using System.Web.Services;
- using System.Web.Services.Configuration;
- using System.Web.UI;
- using System.Collections.Specialized;
- namespace System.Web.Services.Protocols
- {
- class DummyHttpHandler : IHttpHandler
- {
- bool IHttpHandler.IsReusable {
- get { return false; }
- }
- void IHttpHandler.ProcessRequest (HttpContext context)
- {
- // Do nothing
- }
- }
-
- public class WebServiceHandlerFactory : IHttpHandlerFactory
- {
- #region Constructors
- public WebServiceHandlerFactory ()
- {
- }
-
- #endregion // Constructors
- #region Methods
- public IHttpHandler GetHandler (HttpContext context, string verb, string url, string filePath)
- {
- Type type = WebServiceParser.GetCompiledType (filePath, context);
- WSProtocol protocol = GuessProtocol (context, verb);
- IHttpHandler handler = null;
- if (!WSConfig.IsSupported (protocol))
- return new DummyHttpHandler ();
- switch (protocol) {
- case WSProtocol.HttpSoap:
- handler = new HttpSoapWebServiceHandler (type);
- break;
- case WSProtocol.HttpPost:
- handler = new HttpPostWebServiceHandler (type);
- break;
- case WSProtocol.HttpGet:
- handler = new HttpGetWebServiceHandler (type);
- break;
- case WSProtocol.Documentation:
- handler = new SoapDocumentationHandler (type, context);
- break;
- }
- return handler;
- }
- static WSProtocol GuessProtocol (HttpContext context, string verb)
- {
- if (context.Request.PathInfo == null || context.Request.PathInfo == "")
- {
- if (context.Request.RequestType == "GET")
- return WSProtocol.Documentation;
- else
- return WSProtocol.HttpSoap;
- }
- else
- {
- if (context.Request.RequestType == "GET")
- return WSProtocol.HttpGet;
- else
- return WSProtocol.HttpPost;
- }
- }
- public void ReleaseHandler (IHttpHandler handler)
- {
- }
- #endregion // Methods
- }
- }
|