回答編集履歴
2
追記
test
CHANGED
@@ -61,3 +61,55 @@
|
|
61
61
|
|
62
62
|
|
63
63
|
#85 がサイズ 41.8 KB (42,856 バイト)の .jpg 画像で応答は HTTP/1.1 200 OK となり成功。
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
**【追記2】**
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
SSL だけでそういう問題が出るとすると FAQ レベルの話&周知の事例なのに、そうでもなさそうなのが不思議だったのですが、client certificate も絡んだ問題なのかもしれません。
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
以下の記事の回答で黄色のバックグラウンドとなっている部分が IIS Express を使った時のエラーメッセージのようです。
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
IIS randomly returns 413 Request Entity Too Large when uploading large files and using TLS
|
80
|
+
|
81
|
+
[https://serverfault.com/questions/900211/iis-randomly-returns-413-request-entity-too-large-when-uploading-large-files-and](https://serverfault.com/questions/900211/iis-randomly-returns-413-request-entity-too-large-when-uploading-large-files-and)
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
その中に:
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
Most likely causes: The Web server cannot service the request because it is trying to negotiate a client certificate but the request entity is too large.
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
If using client certificates, try: Increasing system.webServer/serverRuntime@uploadReadAheadSize
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
・・・とあります。
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
実際、質問者さんのサイトは client certificate を要求しているようです。以下の画像は Fiddler 経由でアクセスしているときに表示されたものです。そう書いてありますね。
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
![イメージ説明](c8c5f0b8fc5e6a3e5f49b3f89564151d.jpeg)
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
ちなみに、自分の環境の Visual Studio Community 2015 で IIS Express で SSL 通信を利用する設定にして(設定方法は下記参照)試してみましたが、uploadReadAheadSize はデフォルトのままで問題なしでした。
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
IIS Express で SSL 通信
|
114
|
+
|
115
|
+
[http://surferonwww.info/BlogEngine/post/2018/09/09/ssl-communication-on-iis-express.aspx](http://surferonwww.info/BlogEngine/post/2018/09/09/ssl-communication-on-iis-express.aspx)
|
1
追記
test
CHANGED
@@ -41,3 +41,23 @@
|
|
41
41
|
|
42
42
|
|
43
43
|
![イメージ説明](278efa1fe5980775bd961537d4dc5229.jpeg)
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
**【追記】**
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
質問者さんが下のコメント欄に書いた url の https://usign.shop/test.html を、自分の環境で試して Fiddler で要求・応答をキャプチャしたの画像を以下に貼っておきます。ブラウザは Chrome 78.0.3904.87 です。
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
![イメージ説明](567376b604dd9fcc8c27fc224e89088e.jpeg)
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
#77 がサイズ 206 KB (211,951 バイト) の .jpg 画像で応答は HTTP/1.1 413 Request Entity Too Large となり失敗。
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
#85 がサイズ 41.8 KB (42,856 バイト)の .jpg 画像で応答は HTTP/1.1 200 OK となり成功。
|