Chinaunix首页 | 论坛 | 博客
  • 博客访问: 341661
  • 博文数量: 79
  • 博客积分: 3053
  • 博客等级: 中校
  • 技术积分: 861
  • 用 户 组: 普通用户
  • 注册时间: 2006-02-27 20:43
文章分类

全部博文(79)

文章存档

2012年(3)

2011年(21)

2010年(15)

2009年(40)

分类: Python/Ruby

2011-12-15 16:20:26

1、客户端

a、使用suds

    使用pip或者easy_install 安装suds,python客户端样例如下:

#! /usr/bin/python
# -*- coding: utf-8 -*-

import suds
url = '
client = suds.client.Client(url)
print client    #结果看图1
result =  client.service.getMobileCodeInfo(18611217787) 

print result    #结果看图2
print client.last_received()  #结果看图3

b、使用soap.py

    下载相应的版本

    python setup.py install安装,注意:如果出现“SyntaxError: from __future__ imports must occur at the beginning of the file”错误,

把Client.py/Types.py/Server.py/GSIServer.py几个文件的“from __future__ import nested_scopes”移动到文件开始即可安装

使用样例如下:

from SOAPpy import WSDL

url=''

server = WSDL.Proxy(url)

阅读(1540) | 评论(0) | 转发(0) |
0

上一篇:ipfw常用配置

下一篇:TG的建表与初始化

给主人留下些什么吧!~~