aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/methods/trace
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/http/methods/trace')
-rw-r--r--files/ja/web/http/methods/trace/index.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/files/ja/web/http/methods/trace/index.html b/files/ja/web/http/methods/trace/index.html
new file mode 100644
index 0000000000..b70cb7e9a4
--- /dev/null
+++ b/files/ja/web/http/methods/trace/index.html
@@ -0,0 +1,78 @@
+---
+title: TRACE
+slug: Web/HTTP/Methods/TRACE
+tags:
+ - HTTP
+ - HTTP リクエストメソッド
+ - Reference
+ - trace
+translation_of: Web/HTTP/Methods/TRACE
+---
+<div>{{HTTPSidebar}}</div>
+
+<p><strong>HTTP の <code>TRACE</code> メソッド</strong>は、対象リソースまでのパスに沿ってメッセージのループバックテストを行い、便利なデバッグの仕組みを提供します。</p>
+
+<p>リクエストの最終受信者は受信したメッセージを、以下に示すいくつかのフィールドを除いて、クライアントに {{httpheader("Content-Type")}} を <code>message/http</code> に設定した {{HTTPStatus("200")}} (<code>OK</code>) レスポンスの本文として返送します。最終受信者はオリジンのサーバーか、リクエストで {{HTTPHeader("Max-Forwards")}} の値が0で受け取った最初のサーバーのどちらかです。</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">リクエストの本文</th>
+ <td>なし</td>
+ </tr>
+ <tr>
+ <th scope="row">成功時のレスポンスの本文</th>
+ <td>なし</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Safe", "安全性")}}</th>
+ <td>なし</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Idempotent", "べき等性")}}</th>
+ <td>あり</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Cacheable", "キャッシュ")}}</th>
+ <td>不可</td>
+ </tr>
+ <tr>
+ <th scope="row">HTML フォームの使用</th>
+ <td>不可</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">TRACE /index.html
+</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", "TRACE", "4.3.8")}}</td>
+ <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("http.methods.TRACE")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/HTTP/Methods">HTTP メソッド</a></li>
+</ul>