Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
2004-12-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Browse files Browse the repository at this point in the history
	* server/XSPWorkerRequest.cs: this typo prevented the underlying
	sys.web from knowing the real http version used. If you've seen stack
	traces showing ChunkStream when running *xsp*, that's over now.


svn path=/trunk/xsp/; revision=36929
  • Loading branch information
gonzalop committed Dec 2, 2004
1 parent 1f7c61c commit dd886af
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
2004-12-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* server/XSPWorkerRequest.cs: this typo prevented the underlying
sys.web from knowing the real http version used. If you've seen stack
traces showing ChunkStream when running *xsp*, that's over now.

2004-11-24 Alp Toker <alp@atoker.com>

* server/XSPApplicationHost.cs: remove slash
* server/XSPApplicationHost.cs: remove slash.

2004-11-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>

Expand Down
2 changes: 1 addition & 1 deletion server/XSPWorkerRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static void FreeMemoryStream (MemoryStream buf)
this.pathInfo = pathInfo;
this.protocol = protocol;
if (protocol == "HTTP/1.1") {
protocol = "HTTP/1.0"; // Only 1.0 supported by xsp standalone.
this.protocol = "HTTP/1.0"; // Only 1.0 supported by xsp standalone.
keepAlive = true;
}

Expand Down

0 comments on commit dd886af

Please sign in to comment.