diff options
Diffstat (limited to 'files/ja/web/http/status/101/index.html')
-rw-r--r-- | files/ja/web/http/status/101/index.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ja/web/http/status/101/index.html b/files/ja/web/http/status/101/index.html new file mode 100644 index 0000000000..17f8a39d5a --- /dev/null +++ b/files/ja/web/http/status/101/index.html @@ -0,0 +1,54 @@ +--- +title: 101 Switching Protocols +slug: Web/HTTP/Status/101 +tags: + - HTTP + - HTTP ステータスコード + - WebSocket + - リファレンス + - 情報 +translation_of: Web/HTTP/Status/101 +--- +<div>{{HTTPSidebar}}</div> + +<p>HTTP の <code><strong>101 Switching Protocols</strong></code> レスポンスコードは、 {{HTTPHeader("Upgrade")}} リクエストヘッダーを含むメッセージが送られたクライアントが要求する際に、サーバーが切り替えようとしているプロトコルを示します。</p> + +<p>サーバーはこのレスポンスに {{HTTPHeader("Upgrade")}} レスポンスヘッダーを含めて、切り替え先のプロトコルを示します。手順は<a href="/ja/docs/Web/HTTP/Protocol_upgrade_mechanism">プロトコル更新メカニズム</a>の記事で詳細に説明しています。</p> + +<h2 id="Status" name="Status">状態</h2> + +<pre class="syntaxbox">101 Switching Protocols</pre> + +<h2 id="Examples" name="Examples">例</h2> + +<p>切り替えるプロトコルで <a href="/ja/docs/Web/API/WebSockets_API">WebSockets</a> が使用される場合です。</p> + +<pre>HTTP/1.1 101 Switching Protocols +Upgrade: websocket +Connection: Upgrade</pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">題名</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{RFC("7231", "101 Switching Protocol" , "6.2.2")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1):セマンティクスとコンテンツ</td> + </tr> + </tbody> +</table> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li><a href="/ja/docs/Web/HTTP/Protocol_upgrade_mechanism">プロトコル更新メカニズム</a></li> + <li><a href="/ja/docs/Web/API/WebSockets_API">WebSocket</a></li> + <li>{{HTTPHeader("Upgrade")}}</li> + <li>{{HTTPStatus("426")}} <code>Upgrade Required</code></li> +</ul> |