How Web Servers and The Internet Work The Basic Process.

Slides:



Advertisements
Similar presentations
PowerPoint presentation of first 25 pages of instructional manual Edith Fabiyi Essentials of Internet Access.
Advertisements

Basic Internet Terms Digital Design. Arpanet The first Internet prototype created in 1965 by the Department of Defense.
XP 1 Developing a Basic Web Site Tutorial 2: Web Site Structures & Links.
XP Browser and Basics1. XP Browser and Basics2 Learn about Web browser software and Web pages The Web is a collection of files that reside.
Chapter Two: Internet Fundamentals: Operations, Management, the Web, and Wireless By: Laura Marshall, Mary Mauro, and Doug Moore.
The Internet Useful Definitions and Concepts About the Internet.
11 October HTML: Links and Forms. Agenda News: William Knight Review of HTML Pages Meeting sheet passed HTML Links Networking and the Internet HTML Forms.
1 Software Testing and Quality Assurance Lecture 32 – SWE 205 Course Objective: Basics of Programming Languages & Software Construction Techniques.
Internet – Part II. What is the World Wide Web? The World Wide Web is a collection of host machines, which deliver documents, graphics and multi-media.
IST 221 Internet Concepts and Applications Internet, WWW and HTML 1.
HTML & Dreamweaver 101 Aman Yadav. Definitions HTTP – The Web uses a protocol called HTTP (Hyper Text Transport Protocol) to communicate between the Web.
Internet Technology - 3 Internet Technologies - 3 Dr. Mohammed Al-Abdulkareem © 2006.
Browser and Basics Tutorial 1. Learn about Web browser software and Web pages The Web is a collection of files that reside on computers, called.
Website Publishing. Publishing Basics Early Web Sites Obtain a Domain Name IP Address (Internet Protocol Address) – A number that uniquely identifies.
Why Worry About the WWW? Intranets -- with lots of HR applications »policies/procedures »job postings »benefits & other transactions »hiring & other workflows.
Copyright © Texas Education Agency, All rights reserved.1 Web Technologies Web Administration.
CNIT 132 Intermediate HTML and CSS Course Overview.
CISCO NETWORKING ACADEMY Chabot College ELEC Application Layer Puzzles.
Syllabus outcomes Describes and applies problem-solving processes when creating solutions Designs, produces and evaluates appropriate solutions.
 TCP/IP is the communication protocol for the Internet  TCP/IP defines how electronic devices should be connected to the Internet, and how data should.
Copyright © Curt Hill The Internet An Introduction.
1 HTML (Set Up Public Folder) Some material on these slides is taken directly from
INTERNET DATA FLOW Created by David Whitchurch for ISDS 4120 Louisiana State University.
Web Page Design I Retest Terms Review. 1. Web pages are created using a language known as ___________. The coding of this language must follow specific.
How Web Servers and the Internet Work by by: Marshall Brainby: Marshall Brain
Parts of a URL (Uniform Resource Locator). Let’s study more closely what the parts of this string indicate.
Chapter 1: Introduction to Web Applications. This chapter gives an overview of the Internet, and where the World Wide Web fits in. It then outlines the.
Tutorial #2 Creating Links. Tutorial #1 Review Basic Page (DOCTYPE, HTML, Head, Title, Body) Tags Structure( ),,,,,, Nested Tags content Tag Attributes.
Web Page Design I Basic Computer Terms “How the Internet & the World Wide Web (www) Works”
ITIS 1210 Introduction to Web-Based Information Systems Chapter 23 How Web Host Servers Work.
HOW WEB SERVER WORKS? By- PUSHPENDU MONDAL RAJAT CHAUHAN RAHUL YADAV RANJIT MEENA RAHUL TYAGI.
Chapter 1: The Internet and the WWW CIS 275—Web Application Development for Business I.
Here you are at your computer, but you don’t have internet connections. Your ISP becomes your link to the internet. In order to get access you need to.
MySQL and PHP Internet and WWW. Computer Basics A Single Computer.
CIS 250 Advanced Computer Applications Internet/WWW Review.
The Inter-network is a big network of networks.. The five-layer networking model for the internet.
Chapter 9 Publishing and Maintaining Your Site. 2 Principles of Web Design Chapter 9 Objectives Understand the features of Internet Service Providers.
Using the Internet. (WWW) and the Internet The World Wide Web (WWW) is a small part of the Internet. The Internet relates to all the hardware and software.
Introduction to Internet. Chapter 1 Objectives Origins of the Internet Packets and Routers TCP/IP DNS HTTP URL Client-Server.
Network Programming All networked computers have an IP Address – Unique – In the form of xxx.xxx.xxx.xxx ( ) – 32 bits = ~4 billion possibilities.
Socket Programming Introduction. Socket Definition A network socket is one endpoint in a two-way communication flow between two programs running over.
CITA 310 Section 2 HTTP (Selected Topics from Textbook Chapter 6)
Newsgroup World Wide Web (WWW) Conservation Over the Internet e.g.ICQ File Transfer Protocol (FTP) Includes 6 main services: Electronic Mail Remote.
Module: Software Engineering of Web Applications Chapter 2: Technologies 1.
CSI 3125, Preliminaries, page 1 Networking. CSI 3125, Preliminaries, page 2 Networking A network represents interconnection of computers that is capable.
4343 X2 – Outline The Domain Name System The Web.
1 More About HTML Images and Links. 22 Objectives You will be able to Include images in your HTML page. Create links to other pages on your HTML page.
Computer Network Architecture Lecture 6: OSI Model Layers Examples 1 20/12/2012.
Introduction to the World Wide Web & Internet CIS 101.
The Internet, Fourth Edition-- Illustrated 1 The Internet – Illustrated Introductory, Fourth Edition Unit B Understanding Browser Basics.
Internet  ’60 = an invention of the US army  Universities and libraries also start to use this communication tool  Protocol + physical network=> backbone.
Internet addresses By Toni Grey & Rashida Swan HTTP Stands for HyperText Transfer Protocol Is the underlying stateless protocol used by the World Wide.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
The Internet and WWW. This term we shall be learning more about the Internet and World Wide Web and their benefits and uses. We shall also be learning.
Website Design and Construction Services and Standards.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 2 Creating Links.
2015 暑期電腦課程 -H3 HOW FTP WORKS? By
CISC103 Web Development Basics: Web site:
Warm Handshake with Websites, Servers and Web Servers:
Some bits on how it works
Due: a start of class Oct 26
CoreFTP.
CISC103 Web Development Basics: Web site:
Web Design & Development
CoreFTP.
Information Retrieval and Web Design
Computer Networks Protocols
Your computer is the client
The Internet and Electronic mail
Q/ Compare between HTTP & HTTPS? HTTP HTTPS
Presentation transcript:

How Web Servers and The Internet Work The Basic Process

You’re sitting at your computer and cussing, because Tulloss has once again posted CIS 345 info at the last minute and you need to download it You type in the URL Up pops my page, but how did it happen?

The Basic Process

The browser broke the URL into 3 parts The protocol (http) – what’s http? The server name ( The folder where it resides (tullossb) And finally the filename (default.htm)

The Basic Process The browser communicated with a name server to translate the server name into an Internet Protocol (IP) address, which it uses to connect to the server machine

The Basic Process The browser then formed a connection to the server at the IP address on port 80 What’s a port? Basically, a value used to distinguish among the multiple applications that may have connections with a single host E.g. www = 80, ftp = 21

The Basic Process Following the http protocol, the browser sent a GET request to the server, asking for the file default.htm located at

The Basic Process The server then sent the HTML text for the Web page to the browser Finally, the browser read the HTML tags and formatted the page onto your screen