Download presentation
Presentation is loading. Please wait.
Published byBarbara McCarthy Modified over 9 years ago
1
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 1 Chapter 24 Hypertext Transfer Protocol (HTTP)
2
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 2 CONTENTS HTTP TRANSACTION REQUEST MESSAGE RESPONSE MESSAGE HEADER EXAMPLES SOME OTHER FEATURES
3
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 3 HTTP uses the services of TCP on well-known port 80.
4
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 4 HTTP TRANSACTION 24.1
5
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 5 24.1 HTTP 트랜잭션 HTTP 트랜잭션
6
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 6 24.1 HTTP 트랜잭션 메시지 종류 Request : 요청 메시지 (C S) Response : 응답 메시지 (S C)
7
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 7 24.2 REQUEST MESSAGE
8
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 8 24.2 요청 메시지
9
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 9 24.2 요청 메시지 요청 라인 요청종류 : 메소드 (GET,HEAD,POST…) 자원 (URL) : 프로토콜 (FTP,HTTP,TELNET…) HTTP 버전 : HTTP 1.1(1.0,0.9 도 사용함 )
10
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 10 24.2 요청 메시지 URL
11
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 11 24.2 요청 메시지 메소드 클라이언트가 서버에게 발행하는 실제 명령 or 요청 메소드 종류 GET 클라이언트가 서버로부터 문자를 읽을 때 문서검색, 응답 메시지의 본문에 문서내용 포함 HEAD 클라이언트가 문서에 대한 정보를 원할 때 응답에 본문이 없음 (GET 과의 차이 ) POST 클라이언트가 서버에게 정보를 제공시 사용 예 ) 서버에게 입력을 보낼때 사용
12
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 12 24.2 요청 메시지 PUT 서버에 저장될 새 문서 or 교체문서를 제공시 사용 요청된 문서에 포함, URL 이 지정한 위치에 저장 PATCH 기존 파일의 변경사항 목록만을 포함 COPY 파일을 다른 위치로 복사시 사용 원본 파일 위치는 요청라인 (URL), 목적지 위치는 헤더에서 주어짐 MOVE 파일 이동시 사용 원본 파일 위치는 요청라인 (URL), 목적지 위치는 헤더에서
13
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 13 24.2 요청 메시지 DELETE 서버에서 문서 제거시 사용 LINK 다른 위치로의 링크나 링크 생성시 사용 원본 파일 위치는 요청라인, 목적지 위치는 헤더에서 주어짐 UNLINK LINK 에 의해 생성된 링크 삭제시 사용 OPTION 클라이언트가 서버에게 사용 가능한 옵션 질의시 사용
14
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 14 RESPONSE MESSAGE 24.3
15
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 15 24.3 응답 메시지
16
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 16 24.3 응답 메시지 상태라인 응답 메시지의 상태 정의 구성요소 : HTTP 버전, 공백, 상태코드, 공백 상태문구 Status code: Same format as FTP responses (three digits)
17
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 17 24.3 응답 메시지 HTTP 버전 : HTTP 1.1(1.0, 0.9 도 사용함 ) 상태 코드 There is no content in the bodyNo content204 The request is accepted, but it is not immediately acted upon Accepted202 A new URL is createdCreated201 The request is successfulOK200 Success The server is complying with a client request to switch protocols defined in the upgrade header Switching101 The initial part of the request has been received and the client may continue with is request Continue100 Informational DescriptionPhrase Code
18
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 18 24.3 응답 메시지 The format requested is not acceptableNot acceptable406 The method is not supported in this URL Method not allowed 405 Server Error There is an error, such as a crash, in the server siteInternal server error 500 The requested URL is no longer used by the serverMoved permanently 302 The request lacks proper authorizationUnauthorized401 Service is deniedForbidden403 The service is temporarily unavailable, but may be requested in the future Service unavailable503 The action requested act not be performedNot implement501 The document is not foundNot found404 There is a syntax error in the requestBad request400 Client Error The requested URL has moved temporarilyMoved temporarily304 The requested URL refers to more than one resource Multiple choices301 Redirection DescriptionPhraseCode
19
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 19 HEADER 24.4
20
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 20 24.4 헤더 헤더 역할 클라이언트와 서버 사이의 추가적인 정보 교환 형식 헤더이름, 콜론, 공백, 헤더 값
21
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 21 24.4 헤더 헤더라인 일반헤더 (General headers) 요청헤더 (Request headers) 응답헤더 (Response headers) 항목헤더 (Entity headers) 요청 메시지 : 일반, 요청, 항목헤더만 포함 응답 메시지 : 일반, 응답, 항목헤더만 포함
22
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 22 24.4 헤더 헤더
23
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 23 24.4 헤더 일반헤더 (General headers) 메시지에 대한 일반적인 정보 제공 요청과 응답 메시지에 존재 Specifies the preferred communication protocol Upgrade Shows the MIME version used MIME-version Shows the current date Date Shows whether the connection should be closed or not Connection Specifies information about caching Cache-control Header Description
24
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 24 24.4 헤더 요청헤더 (Request headers) 클라이언트의 구성과 선호하는 문서 형식을 지정 Shows the host and port number of the client Specifies the URL of the linked documentReferrer Send only the portion of the document that is missingIf-range Send the document if not changed since specified dateIf-unmodified-since Identifies the client programUser-agent Send the document only if it dose not matching given tagIf-non-match Send the document only if it matches given tagIf-match Send the document if newer than specified dateIf-modified-since Host Shows the e-mail address of the userFrom Shows what permissions the client hasAuthorization Shows the language the client can acceptAccept-language Shows the encoding scheme the client can handleAccept-encoding Shows the character set the client can handleAccept-charset Shows the media format the client can acceptAccept DescriptionHeader
25
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 25 24.4 헤더 응답헤더 (Response headers) 서버의 구성과 요청에 대한 특별한 정보를 지정 응답 메시지에만 존재 Shows the server name and version number Server Specifies the date after which the server is available Retry-after Shows the supported list of methods Public Shows the age of the document Age Shows if server accepts the range requested by client Accept-range Header Description
26
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 26 24.4 헤더 항목헤더 (Entity headers) 문서의 본문에 대한 정보 제공 대부분 응답 메시지에 존재, 일부 요청 메시지에도 존재 Specifies the location of the created or moved documentLocation Gives the date and time of the last changeLast-modified Gives the date and time when contents may changeExpires Gives an entity tagEtag Specifies the media typeContent-type Specifies the range of the documentContent-range Shows the length of the documentContent-length Specifies the languageContent-language Specifies the encoding schemeContent-encoding List valid method that can be used with a URLAllow DescriptionHeader
27
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 27 EXAMPLES 24.5
28
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 28 24.5 예제 Example 1 This example retrieves a document. We use the GET method to retrieve an image with the path /usr/bin/image1.
29
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 29 24.5 예제 예제 1
30
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 30 24.5 예제 Example 2 This example retrieves information about a document. We use the HEAD method to retrieve information about an HTML document (see Chapter 25)
31
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 31 24.5 예제 예제 2
32
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 32 24.5 예제 Example 3 In this example, the client wants to send input data to the server. We use the POST method.
33
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 33 24.5 예제 예제 3
34
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 34 SOME OTHER FEATURES 24.6
35
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 35 24.6 몇 가지 다른 특징들 HTTP version 1.1 specifies a persistent connection by default.
36
HANNAM UNIVERSITY Http://netwk.hannam.ac.kr 36 24.6 몇 가지 다른 특징들 Persistent Connection 서버는 응답을 전송한 후에 차후의 요청을 위해 연 결을 열어놓은 상태 유지 클라이언트 요청이나 timeout 인 경우 닫을 수 있다. Proxy Server 최신 요청에 대한 응답들의 복사물을 가지고 있는 컴퓨터 (cache)
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.