编写服务器端应用程序以处理作为Web服务器的apache的htt

编写服务器端应用程序以处理作为Web服务器的apache的htt

本文介绍了如何编写服务器端应用程序以处理作为Web服务器的apache的http请求的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我曾在Windows上的ISAPI dll上注册过IIS.现在的要求是在Linux中的Apache上运行ISAPI模块.我查看了以下链接,该链接介绍了有关在Windows上向Apache注册ISAPI模块的信息.

http://httpd.apache.org/docs/1.3/mod/mod_isapi.html



Hi,
I have worked on ISAPI dll’S registered to IIS on windows. The requirement now is to run ISAPI module on Apache in Linux. I looked at the following link which tells about registering ISAPI modules with Apache on Windows.

http://httpd.apache.org/docs/1.3/mod/mod_isapi.html



Are there any libraries which allow you to write server-side applications that handle the HTTP requests with Apache being the webserver on Linux?

推荐答案

>telnet www.google.com 80
GET / HTTP/1.0


放在一行之后的两个新行.

那么您将收到来自http服务器的回复.您的telnet甚至不知道它是哪种服务器


exactly two new line after putting the line.

then you will get reply from http server. your telnet even dont know what kind of server it is


这篇关于如何编写服务器端应用程序以处理作为Web服务器的apache的http请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 04:52