[asp.net] Implemented CustomErrorsRedirectMode
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Protocols / WebServiceHandler.cs
index c31e77420710932e7af3eb299b44ff9f1f5716fd..8727e6f272440ab3cd012155035d95b9b669185c 100644 (file)
@@ -8,6 +8,27 @@
 // Copyright (C) Tim Coleman, 2002
 //
 
+//
+// 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.Reflection;
 using System.Web;
@@ -46,8 +67,9 @@ namespace System.Web.Services.Protocols
                        set { this.session = value; }
                }
 
-               public virtual bool EnableSession {
-                       get { return false; }
+               internal virtual MethodStubInfo GetRequestMethod (HttpContext context)
+               {
+                       return null;
                }
                
                public virtual void ProcessRequest (HttpContext context)
@@ -56,39 +78,7 @@ namespace System.Web.Services.Protocols
                
                protected object CreateServerInstance ()
                {
-                       object ws = Activator.CreateInstance (ServiceType);
-                       WebService wsi = ws as WebService;
-                       if (wsi != null) {
-                               wsi.SetContext (_context);
-                               wsi.SetSession (session);
-                       }
-
-                       return ws;
-               }
-
-               [MonoTODO]
-               protected IAsyncResult BeginCoreProcessRequest (AsyncCallback callback, object o)
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               protected void CoreProcessRequest ()
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               protected void EndCoreProcessRequest (IAsyncResult result)
-               {
-                       throw new NotImplementedException ();
-               }
-
-               [MonoTODO]
-               private void WriteReturns (object[] returnValues)
-               {
-                       //protocol.WriteReturns (returnValues, outputStream);
-                       throw new NotImplementedException ();
+                       return Activator.CreateInstance (ServiceType);
                }
        }
 }