用Python 2.5开发SOAP程序,还需要安装第三方组件吗?

用Python 2.5开发SOAP程序,还需要安装第三方组件吗?

看了《Dive.Into.Python-zh-cn-5.4-with-code》的介绍,要开发SOAP需要安装三个
组件,但是去下载的时候发现组件的版本不够新(没有For 2.5版)。
请问Python 2.5版有无内建的SOAP组件,用于开发SOAP?
同问
下载pyXML/fpcont/SOAPpy 三个源代码包,解开后,执行
python setup.py install 去安装就可以了,
只有在编译安装pyXML的时候前需要有c编译器,可以下在开源的MinGW,

It's very easy to install MinGW.

    * Grab last release from http://prdownloads.sourceforge.net/mingw
    * Run the file to start the installation process
    * Keep all values at their defaults and select at least next components:
          o MinGW base tools
          o g++ compiler
          o MinGW Make
    * Add the C:\mingw\bin directory to the system PATH
    * Create (or edit) a .cfg file for distutils (distutils.cfg) eg: C:\Python25\Lib\distutils\distutils.cfg with this content:

      [build]
      compiler=mingw32
与SOAP相关的有两个组件ZSI和SOAPpy,请问支持SSL应用的,哪个比较合适?