码迷,mamicode.com
首页 > 编程语言 > 详细

C++ Web Programming

时间:2014-06-20 11:41:32      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:c++

bubuko.com,布布扣

         一般的网关接口或者CGI,就是一个标准的集合,它定义信息如何再问吧服务器和一般脚本间的交换。CGI的说明书是由NCSA维护,NCSA定义CGI的范畴:一般的网关接口或者CGI是外部网关程序的一个标准,它与信息服务器交互。当前的CGI版本是CGI/3.2.9,后续版本还在开发中。

一般的网关程序(CGI)是一个标准协议,它能够使应用程序(称之为CGI程序或者CGI脚本)与Web服务器和客户端进行交互。这些CGI程序能够使用Python、PERL、Shell,C或者C++等编写。

         下面介绍一个实例,根据这个实例来说明,如何使用CGI。

         首先,必须配置HTTP服务器,这里,我们选择ApacheHttpd作为HTTP协议的服务器。CGI设置如下:

#change the directoryRootvariable in httpd.conf file
DocumentRoot"/usr/local/apache-2.4.9/htdocs"
    #set theaccess control
<Directory"/usr/local/apache-2.4.9">
…
#enable the cgi module
LoadModule cgid_module modules/mod_cgid.so
#set the directoryproperties
<Directory "/usr/local/apache-2.4.9/cgi-bin">
   AllowOverride None
   Options ExecCGI
   Order allow,deny
   Allow from all
</Directory>
 
<Directory "/usr/local/apache-2.4.9/cgi-bin">
Options All
</Directory>


          编写一个C++的CGI程序,并编译它得到cpp.cgi文件。改变这个文件的所有权限,使用命令“chmod 755 cpp.cgi”。

cpp.cpp文件

#include <iostream>
using namespace std;
 
int main ()
{
    
   cout << "Content-type:text/html\r\n\r\n";
   cout << "<html>\n";
   cout << "<head>\n";
   cout << "<title>C++ CGI Welcome you</title>\n";
   cout << "</head>\n";
   cout << "<body>\n";
   cout << "<h2>Congratulation, you enter into the world of CGI.</h2>\n";
   cout << "</body>\n";
   cout << "</html>\n";
   
   return 0;
}


      将编译后的cgi文件放置指定的路径(/usr/local/apache-2.4.9/cgi-bin)下,启动httpd服务,浏览页面:

http://hadoop-master/cgi-bin/cpp.cgi

bubuko.com,布布扣


C++ Web Programming,布布扣,bubuko.com

C++ Web Programming

标签:c++

原文地址:http://blog.csdn.net/john_f_lau/article/details/28415621

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!