使用XML-RPC来控制Webmin

<iframe align="top" marginwidth="0" marginheight="0" src="http://www.zealware.com/csdnblog01.html" frameborder="0" width="728" scrolling="no" height="90"></iframe>

最近要搞到webmin这个东西,仔细看了看代码,耦合的还真是紧密。既然要管理服务器。不可能自己重写一套方案了,于是乎还是修改webmin,取我所用的改写一些模块

1 使用SOAP::Lite这个包

这个包包含了xml-rpc,soap等常用的封装

2 apache+perl CGI 安装

在conf.php中加入

<directory><br> Options +ExecCGI<br> AddHandler cgi-script .cgi .pl <br></directory>
Alias /webmin-rpc/ "/usr/local/webmin-rpc/"
建立一个测试脚本
#!/usr/bin/perl
print "Content-type: text/html/n/n";
print "Hello, World.";
赋予权限
chmod a+x first.pl
3 我的初步设想是
利用xml-rpc监调用linux端的perl脚本。基本上脚本还是web-lib.pl里面,其他模块下的cgi功能都很easy,反正把里面生成html的地方去掉。结果返回成一个xml给管理器。


Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=477463


你可能感兴趣的:(xml)