diff options
Diffstat (limited to 'files/de/web/http/status/414/index.html')
-rw-r--r-- | files/de/web/http/status/414/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/de/web/http/status/414/index.html b/files/de/web/http/status/414/index.html new file mode 100644 index 0000000000..1a24bd3832 --- /dev/null +++ b/files/de/web/http/status/414/index.html @@ -0,0 +1,47 @@ +--- +title: 414 URI Too Long +slug: Web/HTTP/Status/414 +tags: + - Clientfehler + - Fehlermeldung + - HTTP + - HTTP-Statuscode + - Statuscode +translation_of: Web/HTTP/Status/414 +--- +<div>{{HTTPSidebar}}</div> + +<p>Der HTTP-Statuscode <code><strong>414 URI Too Long</strong></code> zeigt an, dass die vom Client angefragte URI länger ist als das, was der Server zu verarbeiten bereit ist.</p> + +<p>Es gibt einige seltene Fälle, in denen so etwas passieren kann:</p> + +<ul> + <li>wenn ein Client fälschlicherweise eine {{HTTPMethod("POST")}}- in eine {{HTTPMethod("GET")}}-Anfrage umgewandelt hat und die bei der Anfrage übergebenen Daten umfangreich sind,</li> + <li>wenn der Client in eine Schleife von Weiterleitungen geraten ist (beispielsweise, wenn URIs immer wieder auf eine durch eine Ergänzung verlängerte URI verweisen) oder</li> + <li>wenn der Server von einem Client angegriffen wird, der versucht, durch die Anfrage sehr langer URIs Sicherheitslücken auszunutzen.</li> +</ul> + +<h2 id="Status">Status</h2> + +<pre class="syntaxbox">414 URI Too Long</pre> + +<h2 id="Spezifikationen">Spezifikationen</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spezifikation</th> + <th scope="col">Titel</th> + </tr> + <tr> + <td>{{RFC("7231", "414 URI Too Long" , "6.5.12")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td> + </tr> + </tbody> +</table> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>{{Glossary("URI")}}</li> +</ul> |