소스 검색

2002-11-09 Gonzalo Paniagua Javier <[email protected]>

	* HttpApplication.cs: don't begin the request using ExecuteNextAsync
	(it fails to work on NetServ).

	* HttpWorkerRequest.cs: typo.

svn path=/trunk/mcs/; revision=8900
Gonzalo Paniagua Javier 23 년 전
부모
커밋
fd8e96cc6f

+ 7 - 0
mcs/class/System.Web/System.Web/ChangeLog

@@ -1,3 +1,10 @@
+2002-11-09  Gonzalo Paniagua Javier <[email protected]>
+
+	* HttpApplication.cs: don't begin the request using ExecuteNextAsync
+	(it fails to work on NetServ).
+
+	* HttpWorkerRequest.cs: typo.
+
 2002-11-07  Gonzalo Paniagua Javier <[email protected]>
 
 	* HttpValueCollection.cs: the value may contain trailing '=' as it is

+ 3 - 2
mcs/class/System.Web/System.Web/HttpApplication.cs

@@ -565,7 +565,7 @@ namespace System.Web {
 				}
 			}
 
-			private void ExecuteNext(Exception lasterror) {
+			internal void ExecuteNext(Exception lasterror) {
 				bool ready_sync = false;
 				IStateHandler handler;
 
@@ -862,7 +862,8 @@ namespace System.Web {
 
 			_asyncWebResult = new HttpAsyncResult(cb, extraData);
 
-			_state.Start();
+			_state.Reset ();
+			_state.ExecuteNext (null);
 
 			return _asyncWebResult;
       }

+ 1 - 1
mcs/class/System.Web/System.Web/HttpWorkerRequest.cs

@@ -1,5 +1,5 @@
 // 
-// System.Web.HttpResponseStreamProxy
+// System.Web.HttpWorkerRequest
 //
 // Authors:
 // 	Patrik Torstensson ([email protected])