我想使用WebService开发数据库应用程序,对于30-100个用户以内的系统应该选用哪一种类型,各有什么不同,小弟刚开始研究WebService,请各位高手指点:
1.ISAPI/NSAPI Dynamic Link Library
2.CGI Stand-alone executable
3.Win-CGI Stand-alone executable
4.Apache Shared Module(DLL)
5.WebApp Debugger executable

解决方案 »

  1.   

    ISAPI/NSAPI Dynamic Link Library –将生成一个.dll文件,可以用IIS来进行发布;
    CGI Stand-alone executable 将生成一个CGI程序;注意:CGI程序一般比较占用内存
    Apache 1.x;Apache 2.x 可以用Apache来发布;可以实现在不同平台上用行;
    Web App Debugger executable 用webappdbg.exe运行的一个方便调试的程序;
    一般在开发的时候都用5来调试程序,开发好后用1或者2来发布。
    不在你用户端多少,而在于你接口程序写得有多好。
      

  2.   

    Web App Debugger executable 到 ISAPI/NSAPI Dynamic Link Library 如何转换?
      

  3.   

    5.WebApp Debugger executable
    主要是用来调试的,不适合正式发布
      

  4.   

    ISAPI/NSAPI Dynamic Link Library 
    方便