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 ++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 files/de/web/http/methods/connect/index.html (limited to 'files/de/web/http/methods/connect/index.html') 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

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