Hi all expert, I was googling the below question but didn't get appropriate answer.
what is the connection between IIS and client browser? How do they communicate?
Thanks, Programmer
Hi all expert, I was googling the below question but didn't get appropriate answer.
what is the connection between IIS and client browser? How do they communicate?
Thanks, Programmer
HTTP is how web servers and browsers communicate. If you want a lower level protocol it's TCP/IP.
IIS is a web server. The client browser makes HTTP connections to a server machine, which IIS handles and responds to.
Just most other browser / client combinations: The HTTP protocol over TCP/IP.
They communicate using the HTTP protocol, which runs on top of the TCP/IP protocol.
If you wanted more specific information, then please ask a more specific question.
Communicate using HTTP which is served normally on TCP which in turn is transported normally over IP (v4, v6) at which point the lower layer protocols vary greatly over the lifetime of the connection to the client e.g. Ethernet, PoS (Packet over SONET/SDH), MPLS etc.).
As with any good Client/Server relationships (network wise speaking in this case), HTTP isn't married to TCP/IP but is usually paired with those for transport purposes.