博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ladon 与 suds互通 (转)
阅读量:6452 次
发布时间:2019-06-23

本文共 845 字,大约阅读时间需要 2 分钟。

hot3.png

Ladon

from ladon.ladonizer import ladonizefrom ladon.types.ladontype import LadonTypeclass Calculator(object):    class Table(LadonType):        slno = int        colTitle = str        colSize = int        colAlign = str    @ladonize([Table],rtype=int) #notice the [], around table that means the input will be a list of Table LadonTypes.    def setTables(self,tables):        return len(tables)

Suds

from suds.client import Clientclient = Client('http://localhost:8888/Calculator/soap/description')table = client.factory.create('Table')table.slno = 1table.colTitle = 'col1'table.colSize = 10table.colAlign = 'L'table2 = client.factory.create('Table')table2.slno = 2table2.colTitle = 'col2'table2.colSize = 15table2.colAlign = 'L'tableList = [table, table2]print client.service.setTables(tableList)

转载于:https://my.oschina.net/cppblog/blog/530442

你可能感兴趣的文章
linux下,免密码登录
查看>>
街道管理
查看>>
hdu 3501 Calculation 2 (欧拉函数)
查看>>
可以免费下载视频素材和模板网站汇总
查看>>
生成包含数字和大小写字母的随机码
查看>>
SPOJ104 Highways,跨越数
查看>>
使用rman备份异机恢复数据库
查看>>
Win7-64bit系统下安装mysql的ODBC驱动
查看>>
node中非常重要的process对象,Child Process模块
查看>>
Webserver管理系列:3、Windows Update
查看>>
Linux内核源码详解——命令篇之iostat[zz]
查看>>
Sqlserver2000联系Oracle11G数据库进行实时数据的同步
查看>>
明年计划
查看>>
ORACLE功能GREATEST功能说明具体实例
查看>>
DataGridView 输入数据验证格式(实例)
查看>>
HDOJ 2151
查看>>
Foundation框架 - 快速创建跨平台的网站页面原型
查看>>
Intel 82599网卡异常挂死原因
查看>>
open-falcon
查看>>
三菱plc输出指示灯不亮怎么办(转载)
查看>>