Error (HttpWebRequest): Bytes to be written to the stream exceed the Content-Length bytes size specified

柔情痞子 提交于 2019-11-29 09:47:42
Lakerfield

There are three possible options

  • Fix the ContentLength as described in the answer from @rene

  • Don't set the ContentLength, the HttpWebRequest is buffering the data, and sets the ContentLength automatically

  • Set the SendChunked property to true, and don't set the ContentLength. The request is send chunk encoded to the webserver. (needs HTTP 1.1 and has to be supported by the webserver)

Code:

...
request.SendChunked = true;
using (Stream writeStream = request.GetRequestStream())
{ ... }

The Encoded byte array from your InnerXml might be longer as some characters in an UTF8 encoding take up 2 or 3 bytes for a single character.

Change your code as follows:

    using (Stream writeStream = request.GetRequestStream())
    {
        UTF8Encoding encoding = new UTF8Encoding();
        byte[] bytes = encoding.GetBytes(doc.InnerXml);
        request.ContentLength = bytes.Length;
        writeStream.Write(bytes, 0, bytes.Length);
    }

To show exactly what is going on, try this in LINQPad:

var s = "é";
s.Length.Dump("string length");
Encoding.UTF8.GetBytes(s).Length.Dump("array length");

This will output:

 string length: 1 
 array length:  2 

and now use an e without the apostrophe:

var s = "e";
s.Length.Dump("string length");
Encoding.UTF8.GetBytes(s).Length.Dump("array length");

which will output:

string length: 1 
array length:  1 

So remember: string length and the number of bytes needed for a specific encoding might differ.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!