014.02.12.3. Describe the process and significance of directly communicating with an unencrypted web server using telnet on TCP port 80, including the steps involved and the insights gained from such an interaction, especially in the context of understanding data movement across network connections.
telnet emblogic.com 80 :- This command helps to communicate with the emblogic web server.
Then enter these two lines :- GET /HTTP/1.1 HOST:emblogic.com, enter these commands to communicate with the server and after that press ctrl+D to terminate the connection. We will obtain an HTML text as a response.
curl --trace-ascii trace_file http://www.emblogic.com/: This command helps us transfer the data from or to a server. This command is used to work without user interaction.