blob: e30d3daca2d6149692d3a69cda0775d47f05d255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
---
title: TRACE
slug: Web/HTTP/Methods/TRACE
tags:
- HTTP
- Reference
- requête
translation_of: Web/HTTP/Methods/TRACE
original_slug: Web/HTTP/Méthode/TRACE
---
<div>{{HTTPSidebar}}</div>
<p>La <strong>méthode</strong> <strong>HTTP <code>TRACE</code> </strong>effectue un test de rebouclage des messages le long du chemin vers la ressource cible, fournissant ainsi un mécanisme de débogage utile.</p>
<p>Le destinataire final de la demande doit renvoyer au client le message reçu, à l'exclusion de certains champs décrits ci-dessous, en tant que corps de message d'une réponse {{HTTPStatus("200")}}. (OK) avec un {{HTTPHeader("Content-Type")}} de <code>message/http</code>. Le destinataire final est soit le serveur d'origine, soit le premier serveur à recevoir une valeur {{HTTPHeader("Max-Forwards")}} de 0 dans la requête.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">La demande a un corps</th>
<td>Non</td>
</tr>
<tr>
<th scope="row">Une réponse réussie a un corps</th>
<td>Non</td>
</tr>
<tr>
<th scope="row">{{Glossary("Safe")}}</th>
<td>Non</td>
</tr>
<tr>
<th scope="row">{{Glossary("Idempotent")}}</th>
<td>Oui</td>
</tr>
<tr>
<th scope="row">{{Glossary("Cacheable")}}</th>
<td>Non</td>
</tr>
<tr>
<th scope="row">Autorisé dans les formulaires HTML</th>
<td>Non</td>
</tr>
</tbody>
</table>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox notranslate">TRACE /index.html
</pre>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</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="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p class="hidden">Le tableau de compatibilité de cette page est généré à partir de données structurées. Si vous souhaitez contribuer aux données, veuillez consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et envoyez nous une pull request.</p>
<p>{{Compat("http.methods.TRACE")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li><a href="https://wiki.developer.mozilla.org/fr/docs/Web/HTTP/Méthode">Méthodes HTTP</a></li>
</ul>
|