HTTP and Cookies February 26, 2003 Kyle Miyamoto Dawn Namahoe Daniel Young Wendi Young.

Slides:



Advertisements
Similar presentations
Basic Internet Terms Digital Design. Arpanet The first Internet prototype created in 1965 by the Department of Defense.
Advertisements

BlueRedGreenPurpleOrange.
4.01 How Web Pages Work.
Communicating Information: Web Design. It’s a big net HTTP FTP TCP/IP SMTP protocols The Internet The Internet is a network of networks… It connects millions.
The Internet Useful Definitions and Concepts About the Internet.
HTTP Presented By: Holly Mortinson Amy Drout Kyle Balmer & Matt Conklin.
Definitions, Definitions, Definitions Lead to Understanding.
Topics in this presentation: The Web and how it works Difference between Web pages and web sites Web browsers and Web servers HTML purpose and structure.
Introduction 2: Internet, Intranet, and Extranet J394 – Perancangan Situs Web Program Sudi Manajemen Universitas Bina Nusantara.
Implementing Application Protocols. Overview An application protocol facilitates communication between applications. For example, an client uses.
1 The World Wide Web. 2  Web Fundamentals  Pages are defined by the Hypertext Markup Language (HTML) and contain text, graphics, audio, video and software.
HTTP By Mychal Hess, Dee Chow, and Riley Barnes. History HTTP  Tim Berners-Lee he implemented the HTTP protocol in 1990 at the European Center for High-
WEB BROWSERS BTT101 DIGITAL LITERACY (Credit Mr. Spinelli)
Christopher M. Pascucci Basic Structural Concepts of.NET Browser – Server Interaction.
HTML Comprehensive Concepts and Techniques Intro Project Introduction to HTML.
INTRODUCTION TO WEB DATABASE PROGRAMMING
Web Servers Web server software is a product that works with the operating system The server computer can run more than one software product such as .
Principles of Computer Security: CompTIA Security + ® and Beyond, Third Edition © 2012 Principles of Computer Security: CompTIA Security+ ® and Beyond,
Chapter 16 The World Wide Web Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Describe several.
 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.
Introduction to Computers Section 8A. home How the Internet Works Anyone with access to the Internet can exchange text, data files, and programs with.
TCP/IP Protocols Dr. Sharon Hall Perkins Applications World Wide Web(HTTP) Presented by.
Introduction to Internet terms. Topics to Study What is Internet HTTP URL SMS MMS Wi-Fi Video Conferencing Social Webisites.
HOW WEB SERVER WORKS? By- PUSHPENDU MONDAL RAJAT CHAUHAN RAHUL YADAV RANJIT MEENA RAHUL TYAGI.
Objective Understand concepts used to web-based digital media. Course Weight : 5%
Lesson 7 – World Wide Web. What is the World Wide Web?  The content of the worldwide web is held on individual web pages gathered together to form websites.
Internet Protocol B Bhupendra Ratha, Lecturer School of Library and Information Science Devi Ahilya University, Indore
Cookies Web Browser and Server use HTTP protocol to communicate and HTTP is a stateless protocol. But for a commercial website it is required to maintain.
1 Welcome to CSC 301 Web Programming Charles Frank.
Dr. Azeddine Chikh IS444: Modern tools for applications development.
Application Block Diagram III. SOFTWARE PLATFORM Figure above shows a network protocol stack for a computer that connects to an Ethernet network and.
NETWORK HARDWARE AND SOFTWARE MR ROSS UNIT 3 IT APPLICATIONS.
Overview Web Session 3 Matakuliah: Web Database Tahun: 2008.
CS1001 Lecture 9. Overview Security Security HTML HTML.
ECEN “Internet Protocols and Modeling”, Spring 2012 Course Materials: Papers, Reference Texts: Bertsekas/Gallager, Stuber, Stallings, etc Class.
World Wide Web “WWW”, "Web" or "W3". World Wide Web “WWW”, "Web" or "W3"
● A system of Internet servers that support specially formatted documents. The documents are formatted in a markup language called HTML. What is the World.
CONTENTS  Definition And History  Basic services of INTERNET  The World Wide Web (W.W.W.)  WWW browsers  INTERNET search engines  Uses of INTERNET.
CITA 310 Section 2 HTTP (Selected Topics from Textbook Chapter 6)
Web Server.
Newsgroup World Wide Web (WWW) Conservation Over the Internet e.g.ICQ File Transfer Protocol (FTP) Includes 6 main services: Electronic Mail Remote.
Web Server Administration Chapter 6 Configuring a Web Server.
1 Microsoft Outlook Web Access Outlook Web Access Overview Outlook Web Access Environments.
October 7 th, 2010 SDU Webship. What did we learn last week? jQuery makes it really easy to select elements and do stuff with them. jQuery can process.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Internet addresses By Toni Grey & Rashida Swan HTTP Stands for HyperText Transfer Protocol Is the underlying stateless protocol used by the World Wide.
A s s i g n m e n t W e e k 7 : T h e I n t e r n e t B Y : P a t r i c k O b i s p o.
By: The Immigrants :D I mean the Mexican and the Colombian I mean Daniel and Felipe.
Web Server Administration Chapter 6 Configuring a Web Server.
Week-7 (Lecture-1) Internet Protocols: TCP/IP, Client Server: Protocol: Specification in networking and Communications It defines the procedures to be.
4.01 How Web Pages Work.
Tonga Institute of Higher Education IT 141: Information Systems
WWW and HTTP King Fahd University of Petroleum & Minerals
Y.-H. Chen International College Ming-Chuan University Fall, 2004
Warm Handshake with Websites, Servers and Web Servers:
CASE STUDY -HTML,URLs,HTTP
Introducing the World Wide Web
Some bits on how it works
Some Common Terms The Internet is a network of computers spanning the globe. It is also called the World Wide Web. World Wide Web It is a collection of.
Client / Session Identification Cookies
Hypertext Transfer Protocol
COMP 101 Introduction.
Client / Session Identification Cookies
COMP 101 Introduction.
Tonga Institute of Higher Education IT 141: Information Systems
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
COMP 101 Introduction.
Hyper Text Transfer Protocol
Tonga Institute of Higher Education IT 141: Information Systems
4.01 How Web Pages Work.
Presentation transcript:

HTTP and Cookies February 26, 2003 Kyle Miyamoto Dawn Namahoe Daniel Young Wendi Young

Table of Contents Definition Slide Definition Slide Overview of HTTP Overview of HTTP Chart Chart Stateless Protocol Stateless Protocol Cookies as a Way of Maintaining State Cookies as a Way of Maintaining State Example of Cookies Example of Cookies Other Useful facts Other Useful facts Summary Slide Summary Slide Citations Citations

Definitions HTTP (Hypertext Transfer Protocol) – Protocol used to transfer files over the internet to the web browser from a web server. HTTP (Hypertext Transfer Protocol) – Protocol used to transfer files over the internet to the web browser from a web server. Cookies – A small text file sent from web server to browser computer and from browser computer back to the web server. Cookies – A small text file sent from web server to browser computer and from browser computer back to the web server. State – Identification of a user and the memory of user information. State – Identification of a user and the memory of user information. Stateless – Not needing any specific user information. Stateless – Not needing any specific user information. Server – A program that connects and processes requests made over the internet. Server – A program that connects and processes requests made over the internet. Browser – A program used to access the internet. Browser – A program used to access the internet. Protocol – A specific way of communicating. Protocol – A specific way of communicating.

Overview of HTTP Most popular way of transmitting instructions between the user and the server. Most popular way of transmitting instructions between the user and the server. Very simple protocol to retrieve information on the internet. Very simple protocol to retrieve information on the internet.

How HTTP Works

Stateless Protocol HTTP is a stateless protocol. HTTP is a stateless protocol. No information needed or kept. No information needed or kept. Each command is executed independently. Each command is executed independently. No knowledge of commands that came before application. No knowledge of commands that came before application. Information easily retransmitted. Information easily retransmitted. Website kept simple and light. Website kept simple and light.

Cookies Maintaining State Reflects personal settings and configurations. Reflects personal settings and configurations. Each website has its own cookie that is site-specific. Each website has its own cookie that is site-specific.

Example of Cookies

Other Useful Facts Newer cookies will overwrite older cookies. Newer cookies will overwrite older cookies. There are set restrictions on the number of cookies that can be stored. There are set restrictions on the number of cookies that can be stored.

Summary HTTP & Cookies February 26, 2003 Kyle Miyamoto Dawn Namahoe Daniel Young Wendi Young HTTP is a stateless protocol. Every command is executed independently. Cookies are a way of maintaining state. They represent personal settings. There are settings on your computer to limit the number of cookies allowed.

Citations ary.html ary.html ary.html ary.html ml ml ml ml ml ml ml ml