From 4b1a9203c547c019fc5398082ae19a3f3d4c3efe Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:15 -0500 Subject: initial commit --- files/de/web/http/methods/connect/index.html | 84 ++++++++++++++++++++++++ files/de/web/http/methods/delete/index.html | 98 ++++++++++++++++++++++++++++ files/de/web/http/methods/get/index.html | 75 +++++++++++++++++++++ files/de/web/http/methods/index.html | 75 +++++++++++++++++++++ 4 files changed, 332 insertions(+) create mode 100644 files/de/web/http/methods/connect/index.html create mode 100644 files/de/web/http/methods/delete/index.html create mode 100644 files/de/web/http/methods/get/index.html create mode 100644 files/de/web/http/methods/index.html (limited to 'files/de/web/http/methods') diff --git a/files/de/web/http/methods/connect/index.html b/files/de/web/http/methods/connect/index.html new file mode 100644 index 0000000000..6372973577 --- /dev/null +++ b/files/de/web/http/methods/connect/index.html @@ -0,0 +1,84 @@ +--- +title: CONNECT +slug: Web/HTTP/Methods/CONNECT +translation_of: Web/HTTP/Methods/CONNECT +--- +
{{HTTPSidebar}}
+ +
+

Die Methode HTTP CONNECT startet die bidirektionale Kommunikation mit der angeforderten Ressource. Es kann verwendet werden, um einen Tunnel zu öffnen.

+ +

Beispielsweise kann die CONNECT-Methode verwendet werden, um auf Websites zuzugreifen, die {{Glossary("SSL")}} ({{Glossary("HTTPS")}}) verwenden. Der Client fordert einen HTTP-Proxy-Server auf, die TCP-Verbindung zum gewünschten Ziel zu tunneln. Der Server fährt dann fort, die Verbindung im Namen des Clients herzustellen. Sobald die Verbindung vom Server hergestellt wurde, fährt der Proxy-Server mit dem Proxy des TCP-Streams zum und vom Client fort.

+
+ +

CONNECT ist eine Hop-by-Hop-Methode.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Request hat einen InhaltNein
Erfolgreicher response hat einen InhaltJa
{{Glossary("Safe")}}Nein
{{Glossary("Idempotent")}}Nein
{{Glossary("Cacheable")}}Nein
Erlaubt in HTML formsNein
+ +

Syntax

+ +
CONNECT www.example.com:443 HTTP/1.1
+
+ +

Beispiel

+ +

Einige Proxy-Server benötigen möglicherweise die Berechtigung, um einen Tunnel zu erstellen. Siehe auch den Header {{HTTPHeader("Proxy-Authorization")}}.

+ +
CONNECT server.example.com:80 HTTP/1.1
+Host: server.example.com:80
+Proxy-Authorization: basic aGVsbG86d29ybGQ=
+ +

Spezifikationen

+ + + + + + + + + + + + +
SpecificationTitle
{{RFC("7231", "CONNECT", "4.3.6")}}Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
+ +

Browser Kompatibilität

+ + + +

{{Compat("http.methods.CONNECT")}}

+ +

Siehe auch

+ + diff --git a/files/de/web/http/methods/delete/index.html b/files/de/web/http/methods/delete/index.html new file mode 100644 index 0000000000..c054a834f9 --- /dev/null +++ b/files/de/web/http/methods/delete/index.html @@ -0,0 +1,98 @@ +--- +title: DELETE +slug: Web/HTTP/Methods/DELETE +translation_of: Web/HTTP/Methods/DELETE +--- +
{{HTTPSidebar}}
+ +

Die Request-Methode HTTP DELETE löscht die angegebene Ressource.

+ +

 

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Request hat einen KörperKann
Erfolgreiche Response hat KörperKann
{{Glossary("Safe")}}Nein
{{Glossary("Idempotent")}}Ja
{{Glossary("Cacheable")}}Nein
In HTML Formularen erlaubt Nein
+ +

Syntax

+ +
DELETE /file.html HTTP/1.1
+
+ +

Beispiel

+ +

Request

+ +
DELETE /file.html HTTP/1.1
+ +

Responses

+ +

Bei erfolgreicher Anwendung einer DELETE-Methode sind mehrere Antwortzustandscodes möglich:

+ + + +
HTTP/1.1 200 OK
+Date: Wed, 21 Oct 2015 07:28:00 GMT
+
+<html>
+  <body>
+    <h1>File deleted.</h1>
+  </body>
+</html>
+ +

Spezifikationen

+ + + + + + + + + + + + + + +
SpecificationTitle
{{RFC("7231", "DELETE", "4.3.5")}}Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
+ +

Browser Kompatibilität

+ + + +

{{Compat("http.methods.DELETE")}}

+ +

Siehe auch

+ + diff --git a/files/de/web/http/methods/get/index.html b/files/de/web/http/methods/get/index.html new file mode 100644 index 0000000000..b0ab2b3654 --- /dev/null +++ b/files/de/web/http/methods/get/index.html @@ -0,0 +1,75 @@ +--- +title: GET +slug: Web/HTTP/Methods/GET +tags: + - Anfragemethode + - HTTP + - Referenz +translation_of: Web/HTTP/Methods/GET +--- +
{{HTTPSidebar}}
+ +

Die HTTP GET Methode fordert eine Darstellung einer spezifischen Ressource an. Anfragen die GET benutzen, sollten nur Daten abholen.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Anfrage hat einen Inhalt (Body)Nein
Erfolgreiche Antwort hat einen Inhalt (Body)Ja
{{Glossary("Safe")}}Ja
{{Glossary("Idempotent")}}Ja
{{Glossary("Cacheable")}}Ja
Erlaubt in HTML FormularenJa
+ +

Syntax

+ +
GET /index.html
+
+ +

Spezifikation

+ + + + + + + + + + + + +
SpezifikationTitel
{{RFC("7231", "GET", "4.3.1")}}Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
+ +

Browserkompatibilität

+ + + +

{{Compat("http.methods.GET")}}

+ +

Siehe auch

+ + diff --git a/files/de/web/http/methods/index.html b/files/de/web/http/methods/index.html new file mode 100644 index 0000000000..ddeff2a293 --- /dev/null +++ b/files/de/web/http/methods/index.html @@ -0,0 +1,75 @@ +--- +title: HTTP request methods +slug: Web/HTTP/Methods +tags: + - HTTP + - Methods + - NeedsTranslation + - Reference + - TopicStub +translation_of: Web/HTTP/Methods +--- +
{{HTTPSidebar}}
+ +

HTTP defines a set of request methods to indicate the desired action to be performed for a given resource. Although they can also be nouns, these request methods are sometimes referred as HTTP verbs. Each of them implements a different semantic, but some common features are shared by a group of them: e.g. a request method can be {{glossary("safe")}}, {{glossary("idempotent")}}, or {{glossary("cacheable")}}.

+ +
+
GET
+
The GET method requests a representation of the specified resource. Requests using GET should only retrieve data.
+
HEAD
+
The HEAD method asks for a response identical to that of a GET request, but without the response body.
+
POST
+
The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server.
+
PUT
+
+

The PUT method replaces all current representations of the target resource with the request payload.

+
+
DELETE
+
The DELETE method deletes the specified resource.
+
CONNECT
+
+

The CONNECT method establishes a tunnel to the server identified by the target resource.

+
+
OPTIONS
+
The OPTIONS method is used to describe the communication options for the target resource.
+
TRACE
+
+

The TRACE method performs a message loop-back test along the path to the target resource.

+
+
PATCH
+
The PATCH method is used to apply partial modifications to a resource.
+
+ +

Specifications

+ + + + + + + + + + + + + + + + + + + +
SpecificationTitleComment
{{RFC("7231", "Request methods", "4")}}Hypertext Transfer Protocol (HTTP/1.1): Semantics and ContentSpecifies GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE.
{{RFC("5789", "Patch method", "2")}}PATCH Method for HTTPSpecifies PATCH.
+ +

Browser compatibility

+ + + +

{{Compat("http/methods")}}

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf