logo

Web Server Management System - Programming

15 Pages1649 Words15 Views
   

Added on  2022-08-18

Web Server Management System - Programming

   Added on 2022-08-18

ShareRelated Documents
Running head: WEB SERVER AND PROGRAMING
Web server and programing
Name of the Author
Name of the University
Author Note
Web Server Management System - Programming_1
Web Server management system
1
Table of Contents
1.HTTP including Request/Response Methods...............................................................................2
Request Methods.........................................................................................................................2
Response methods.......................................................................................................................3
Session management and stateless programming............................................................................4
State management........................................................................................................................5
Programming control structures......................................................................................................5
Object-oriented programming including classes and objects..........................................................6
Object...........................................................................................................................................6
Class.............................................................................................................................................6
Authentication and web security.....................................................................................................8
Web Server Management System - Programming_2
Web Server management system
2
1.HTTP including Request/Response Methods
HTTP Request Methods
HTTP methods provides a set of request methods in the browser. This methods located to the
desire action and performed for a given resource. Sometime HTTP request methods referred to
as HTTP verb . Request methods are case sensitive. This methods always mention in an upper
case.
GET Method
To retrieve the information using a GET method to the form and giving server information using
a given URI.
Request methods using a GET methods to retrieve a data in a form and no other effect in this
data.
HEAD Method
To retrieve the information using a HEAD method to the form and given the server using a given
URI this method same as GET method, but this method move the status line and work only the
browser header section.
POST Method
Any data send in the server to use the POST request method
PUT
PUT method used to replace all the current representation and resource the uploaded content.
DELETE
Web Server Management System - Programming_3
Web Server management system
3
The DELETE method used to remove all the current representation.
CONNECT
CONNECT method used to tunnel the browser identified by a URI.
Response methods
After receiving a request message, Server response with a HTTP response message.
In this example displaying error condition when the HTTP web server couldn’t find the
requested page:
HTTP/1.1 404 Not Found
Date: Sun, 18 Oct 2012 10:36:20 GMT
Server: Apache/2.2.14 (Win32)
Content-Length: 230
Connection: Closed
Content-Type: text/html; charset=iso-8859-1
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
<title>404 Not Found</title>
</head>
<body>
<h1>Not Found</h1>
Web Server Management System - Programming_4

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Understanding the Use of Cookies in Computer Networks
|8
|1041
|73

Task 1: a. URL can be defined as web resource which identifies
|22
|297
|68

Computer Networks - Usage of Cookies in Ecommerce and Advertising Websites
|8
|1287
|291

Assignment: HTML, PHP and SQL
|7
|1231
|240

Computer networks assignment
|9
|1879
|87

Ways of Attacking a Web Application in PHP: SQL Injection, XSS, Session Hijacking, Directory Traversal, and Remote File Inclusion
|9
|1493
|176