Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
System.Net.HttpWebRequest.GetResponse引发错误
System.Net.HttpWebRequest.GetResponse
“底层连接已关闭:发送时发生意外错误”
在我的程序中。
该请求会创建一个长度可变的参数并使用 oAuth。它在参数字符串长度小于 12250 个字符时起作用,但如果它变得更长,则会失败并出现上述错误。
感觉就像是消息的大小是问题,不用说!
在所有 machine.config 文件中,我有:
<httpRuntime maxRequestLength="32768" />
有任何想法吗?
将 KeepAlive 设置为 false, webRequest.KeepAlive = false;
webRequest.KeepAlive = false;
看看这个。