Previous page Next page Bottom Top One level up Home

HTTP

Webpages concerning "HTTP"

The commercial version of AspTear is now available. The version number is 1.2, and it sports a lot of new functionality.
http://www.alphasierrapapa.com/ComponentCenter/AspTear/
Keywords:
AspTear 1.2, AspTear, HTTP, Download, tearing, asp, ASP, active server pages, Active Server Pages, component, components, ActiveX, ActiveX components, software, commercial components, proxy support, proxy, SSL, client certificates

http://www.alphasierrapapa.com/ComponentCenter/AspTear/

HTTP Client ActiveX Control and COM Object
http://www.mabry.com/httpx/
Keywords:
Mabry, Software, custom, control, Visual, Basic, OLE, VBX, OCX, ActiveX, control, custom, Mabry, Software, OCX, VBX, ActiveX, http, client, protocol, web, html, HTTP/X, HTTPX

http://www.mabry.com/httpx/

csFileDownload - An ASP component to control file downloads.
http://www.chestysoft.com/filedownload/
Keywords:
asp, component, file, download, activex, dll, access code, demo, trial, database, binary, utilities, append, copy, directory, statistics, active server pages

http://www.chestysoft.com/filedownload/

Component developer focusing on .NET, ASP.NET, ActiveX/COM and ASP frameworks. Makers of WebMenu for ASP.NET and PanelBar for ASP.NET.
http://www.coalesys.com/products/httpclient/features/
Keywords:
ASP.NET, Menu, ASP, Developer, Components, COM, VB, C++, C#, PanelBar, WebMenu, Winsock, IIS, Javascript, DHTML, HTML, website, navigation, objects, ActiveX, Studio

http://www.coalesys.com/products/httpclient/features/

http://www.seekfordsolutions.com/Products/HTTPWizard/
Keywords:
vbscript, free, source code, examples, free download, HTTP, protocol, hypertext, HTTP ocx, HTTP activex, file control, activex, ocx, components, developers, visual basic, vb, vc++, foxpro, activex controls, internet protocols, IP tools, wizard, toolpack

http://www.seekfordsolutions.com/Products/HTTPWizard/

HTTP, HTTPS, WebServer, Web Server, OCX, ActiveX Control, Component, included in the PowerTCP WebServer Tool from Dart Communications
http://www.dart.com/powertcp/webserver.asp
Keywords:
http, https, http/s, webserver, web server, ocx, activex control, activex, component, components, asp, visual basic, vb, visual c++, vc++, delphi, soap, wap, html, rope, xml, xsl, sdl, wsdl

http://www.dart.com/powertcp/webserver.asp

The ZIP file compression system and ASP component specialists, utility software, development, Intranet and Web page design. Plus technical authoring and other services
http://www.stonebroom.com/saveform.htm
Keywords:
ASP, XML, XSL, ASP.NET, web development, training, SaveForm, ServerZip, serverzip2, XML, ASP2XML, ASPointer, Stonebroom.ASP2XML, Stonebroom.ASPointer, Stonebroom.SaveForm, Server Zip, XSLTransform, zip files, zip manager, zip, zip utility, archive, backup, intranet, books, manuals, stonebroom, compression, software, utilities, web pages, technical author, zipback

http://www.stonebroom.com/saveform.htm

HTTP, HTTPS, Web OCX, ActiveX Control, Component included in the PowerTCP Web Tool from Dart Communications
http://www.dart.com/powertcp/web.asp
Keywords:
Web, HTTPS, HTTP, ActiveX, Control, asp, visual basic, vb, visual c++, vc++, delphi

http://www.dart.com/powertcp/web.asp

http://www.speeq.com/components/absolutehttp/

http://www.speeq.com/components/absolutehttp/

http://www.eazyware.com/vb5-cgi/index.htm

http://www.eazyware.com/vb5-cgi/index.htm

Help building the largest human-edited directory of the web
Suggest URL - Open Directory Project - Become an editor
directopedia.org uses links and structure from dmoz Open Directory Project.
The contents has been generating using technology developed by scientec.

Wikipedia-Article "HTTP"

Internet protocol suite
Layer Protocols
Application DNS, FTP, HTTP, IMAP, IRC, NNTP, POP3, SIP, SMTP, SNMP, SSH, TELNET, BitTorrent, …
Transport DCCP, SCTP, TCP, RTP, UDP, IL, RUDP, …
Network IPv4, IPv6, …
Link Ethernet, Wi-Fi, Token ring, MPLS, PPP, …


HyperText Transfer Protocol (HTTP) is the primary method used to convey information on the World Wide Web. The original purpose was to provide a way to publish and receive HTML pages.

Development of HTTP was co-ordinated by the World Wide Web Consortium and working groups of the Internet Engineering Task Force, culminating in the publication of a series of RFCs, most notably RFC 2616, which defines HTTP/1.1, the version of HTTP in common use today.

HTTP is a request/response protocol between clients and servers. An HTTP client, such as a web browser, typically initiates a request by establishing a Transmission Control Protocol (TCP) connection to a particular port on a remote host (port 80 by default; see List of well-known ports (computing)). An HTTP server listening on that port waits for the client to send a request string, such as "GET / HTTP/1.1" (which would request the default page of that web server), followed by an email-like MIME message which has a number of informational header strings that describe aspects of the request, followed by an optional body of arbitrary data. Some headers are optional, while others (such as Host) are required by the HTTP/1.1 protocol. Upon receiving the request, the server sends back a response string, such as "200 OK", and a message of its own, the body of which is perhaps the requested file, an error message, or some other information.

Resources to be accessed by HTTP are identified using Uniform Resource Identifiers (URIs) (or, more specifically, URLs) using the http: or https: URI schemes.

Contents

Request methods

HTTP defines eight methods indicating the desired action to be performed on the identified resource.

  • GET – Requests a representation of the specified resource. By far the most common method used on the Web today.
  • HEAD – Asks for the response identical to the one that would correspond to a GET request, but without the response body. This is useful for retrieving meta-information written in response headers, without having to transport the entire content.
  • POST – Submits user data (e.g. from a HTML form) to the identified resource. The data is included in the body of the request.
  • PUT – Uploads a representation of the specified resource.
  • DELETE – Deletes the specified resource (rarely implemented).
  • TRACE – Echoes back the received request, so that a client can see what intermediate servers are adding or changing in the request.
  • OPTIONS – Returns the HTTP methods that the server supports. This can be used to check the functionality of a web server.
  • CONNECT – For use with a proxy that can change to being an SSL tunnel.

Methods GET and HEAD are defined as safe, i.e. intended only for information retrieval. Unsafe methods (such as POST, PUT and DELETE) should be displayed to the user in a special way (e.g. as buttons rather than links), making the user aware of possible side effect of their actions (e.g. financial transaction).

Methods GET, HEAD, PUT and DELETE are defined to be idempotent, meaning that multiple identical requests have the same effect as a single request. Also, the methods OPTIONS and TRACE should not have side effects, and so are inherently idempotent.

HTTP servers are supposed to implement at least GET and HEAD methods and, whenever possible, also OPTIONS method.

HTTP versions

HTTP differs from other TCP-based protocols such as FTP, because HTTP has different protocol versions:

  • 0.9 Deprecated. Was never widely used. Only supports one command, GET. Does not support headers. Since this version does not support POST the client can't pass much information to the server.
  • HTTP/1.0 Still in wide use, especially by proxy servers. Allows persistent connections (alias keep-alive connections, more than one request-response per TCP/IP connection) when explicitly negotiated, but only works well when not using proxy servers.
  • HTTP/1.1 Current version; persistent connections enabled by default and works well with proxies. Also supports request pipelining, allowing multiple requests to be sent at the same time, allowing the server to prepare for the workload and potentially transfer the requested resources more quickly to the client.

HTTP connection persistence

In HTTP/0.9 and HTTP/1.0, a client sends a request to the server, the server sends a response back to the client. After this, the connection is closed. HTTP/1.1, however, supports persistent connections. This enables the client to send a request and get a response, and then send additional requests and get additional responses. The TCP connection is not released for the multiple additional requests, so the relative overhead due to TCP is much less per request. The use of persistent connection is often called keep alive. It is also possible to send more than one (usually between two and five) request before getting responses from previous requests. This is called pipelining.

There is a HTTP/1.0 extension for connection persistence, but its utility is limited due to HTTP/1.0's lack of unambiguous message delimition rules. This extension uses a header called Keep-Alive, while the HTTP/1.1 connection persistence uses the Connection header. Therefore a HTTP/1.1 may choose to support either just HTTP/1.1 connection persistence, or both HTTP/1.0 and HTTP/1.1 connection persistence. Some HTTP/1.1 clients and servers do not implement connection persistence or have it disabled in their configuration.

HTTP connection closing

Both HTTP servers and clients are allowed to close TCP/IP connections at any time (i.e. depending on their settings, their load, etc.). This feature makes HTTP ideal for the World Wide Web, where pages regularly link to many other pages on the same server or to external servers.

Closing an HTTP/1.1 connection can be a much longer operation (from 200 milliseconds up to several seconds) than closing an HTTP/1.0 connection, because the first usually needs a linger close while the second can be immediately closed as soon as the entire first request has been read and the full response has been sent.

HTTP session state

HTTP can occasionally pose problems for Web developers (Web Applications), because HTTP is stateless (i.e. it does not keep session information) so this "feature" forces the use of alternative methods for maintaining users' "state". Many of these methods involve the use of cookies.

Secure HTTP

See main article: https: URI scheme

https: is a URI scheme syntactically identical to the http: scheme used for normal HTTP connections, but which signals the browser to use an added encryption layer of SSL/TLS to protect the traffic. SSL is especially suited for HTTP since it can provide some protection even if only one side to the communication is authenticated. In the case of HTTP transactions over the Internet, typically only the server side is authenticated.

Sample

Below is a sample conversation between an HTTP client and an HTTP server running on www.example.com, port 80.

Client request (followed by a double new line, each in the form of a carriage return followed by a line feed.):

GET /index.html HTTP/1.1
Host: www.example.com

The "Host" header distinguishes between various DNS names sharing a single IP address, allowing name-based virtual hosting. While optional in HTTP/1.0, it is mandatory in HTTP/1.1.

Server response (followed by a blank line and text of the requested page):

HTTP/1.1 200 OK
Date: Mon, 23 May 2005 22:38:34 GMT
Server: Apache/1.3.27 (Unix)  (Red-Hat/Linux)
Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT
Etag: "3f80f-1b6-3e1cb03b"
Accept-Ranges: bytes
Content-Length: 438
Connection: close
Content-Type: text/html; charset=UTF-8

See also

External links

Specifications and references

Tutorials and tools

This article is based on the article "HTTP" from Wikipedia - the free encyclopedia created and edited by online user community. This article is distributed under the terms of GNU Free Documentation License. Here you find the list of authors of this article. The article can only edited within Wikipedia. Edit this article in Wikipedia.