1、File-new-other-webservices-soapserver application-选择CGI Stand-alone executable
2、Create Interface for SOAP Module 选择是
3、输入Service Name 点击ok
4、在INTF下面写上接口实现的函数
IIdemo = interface(IInvokable)
['{E05B7E78-4B57-412F-BB34-805F99E6CDCA}']
function hellworld(str1 : String):String; stdcall;
5、在impl里面写上
public
function hellworld(str1 : String):String; stdcall;
end;
并且实现这个函数
6、编译程序,这时这个cgi的exe文件就生成了
7、用IIS发布就可以了,等着被客户端调用了。
转载注明出处:
http://www.blogjava.net/badboyryan/archive/2007/06/11/123304.html版权所有:坏男孩
posted on 2007-06-11 10:10
坏男孩 阅读(2203)
评论(1) 编辑 收藏 所属分类:
DELPHI