目 录
第一章 引言 7
1.1选题意义 7
1.2论文架构 8
第二章 WEB服务体系结构 9
2.1 WEB服务器基本构架 9
2.1.1 WEB服务器和浏览器 9
2.1.2 WEB页面 10
2.2 WEB系统的基本原理是请求/响应 11
2.3 WEB服务器/浏览器是如何实现通信 12
2.3.1 分析请求 12
2.3.2 构造响应 13
第三章 系统采用技术介绍 14
3.1 Winsock技术简介 14
3.1.1什么是Windows Sockets规范? 14
3.1.2 Windows Sockets规范发展历程 15
3.1.3 套接口 16
3.2 VisualC++6.0简介 16
第四章 系统设计 17
4.1 界面设计 17
4.1.1界面设计要求 17
4.1.2界面制作方法 17
4.2 侦听模块设计 17
4.2.1 服务器端操作 socket(套接字) 17
4.2.2客户端Socket的操作 20
4.3 应答模块设计 22
4.3.1服务器工作线程函数Serverthread 22
4.3.2服务器工作线程函数Blocksock 26
第五章 系统实现 27
5.1页面代码及侦听模块实现 27
5.1.1各按钮功能说明和实现代码 27
5.2 应答模块实现 30
第六章 总结 35
致谢 36
简易WEB服务器研究
摘 要
本文主要论述了WEB服务器的设计与研究,其中介绍了WEB 服务器的基本构架,包括服务器端和浏览器端,以及WEB系统的工作原理,服务器/浏览器的通信模式,着重介绍了分析请求和构造响应这两项服务器与浏览器通信所必需的功能。另外还对Windows Socket规范的含义、发展历程、套接口、套接口的基本编程原理以及本次设计的开发工具Visual C++ 6.0做了简单的介绍。并对简易WEB服务器的页面设计,侦听和响应等功能模块的设计以及具体代码实现做了较为详细的介绍。
关键词:WEB服务器、WinSocket规范、套接口
Research of Simple Web Server
ABSTRACT
This paper mainly talks about researching and designing on a simple web /server. In this paper, I give an introduction on basic structure of web server system which includes server and browser and how the web system /working. I also introduce how they communicate between web server and /browser. What is WinSocket, how it is developing, how to write the codes with socket, how to use the develop tool Visual C++ 6.0 are /related. Then I talk about how to design page and write the codes of listen and response function modules of web server in /detail.
KEYWORDS:WEB Server, WinSockets Standard, Sockets