Webサービスを介してバイト配列の画像を使用HttpWebRequest
してPOST
います。画像のサイズは次のようになります。byte[4096]
コード:
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(wsHost);
webRequest.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate");
webRequest.Headers.Add(HttpRequestHeader.KeepAlive, "true");
エラーが発生します:
The underlying connection was closed. A connection that was expected to be kept alive was closed by the server
サーバーの問題ですか、それとも投稿の問題ですか?