Traced the problem to this code XmlRpcHttpServerprotocol.cs
lines 71-74
if (!httpResp.SendChunked)
{
httpResp.ContentLength = responseStream.Length;
}
httpResp.SendChunked leads to
XmlRpcHttpResponse.cs
lines 47-51
bool IHttpResponse.SendChunked
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
httpResp.ContentLength leads to
XmlRpcHttpResponse.cs
lines 65-69
Int64 IHttpResponse.ContentLength
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
Original issue reported on code.google.com by ChasC...@gmail.com on 14 Apr 2008 at 9:27
Original issue reported on code.google.com by
ChasC...@gmail.com
on 14 Apr 2008 at 9:27