Can anyone explain working of HTTP? What is port number associated with it?
This is a discussion on HTTP within the Web Development forums, part of the category; Can anyone explain working of HTTP? What is port number associated with it?...
Can anyone explain working of HTTP? What is port number associated with it?
Hello,
I don't quite understand your question .. You can run the http on any port you want, you just have to configure the web server
Thanks,
Suji
HTTP works on the basis of requests/responses.A client establishes a connection with a server and sends a request to the server in the form of a request method, URI, and protocol version, followed by a MIME-like message containing request modifiers, client information, and possible body content. The server responds with a status line, including the message's protocol version and a success or error code, followed by a MIME-like message containing server information, entity metainformation, and possible body content.
The port number associated with HTTP is 443.