- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在尝试从 HP Server Automation 访问我的 WSDL 中定义的函数,我能够获取服务器等,但无法通过 SOAPpy 提取任何需要服务器引用的内容。
import SOAPpy
from SOAPpy import WSDL
from SOAPpy import structType
SOAPpy.Config.debug=1
server = WSDL.Proxy('ServerService.wsdl')
serverRef = structType(name='self', typed=0)
serverRef._addItem('id',SOAPpy.longType(19250001))
print server.getCustAttr(serverRef,key='HPSW_ED_win32_diskspace',useScope=False)
The SOAP envelope generated from this code looks like this:
*** Outgoing SOAP ******************************************************
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd2="http://www.w3.org/2000/10/XMLSchema"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"
>
<SOAP-ENV:Body>
<ns1:getCustAttr xmlns:ns1="http://server.opsware.com" SOAP-ENC:root="1">
<xsd:self>
<id xsi:type="xsd2:long">19250001</id>
</xsd:self>
<useScope xsi:type="xsd:boolean">False</useScope>
<key xsi:type="xsd:string">HPSW_ED_win32_diskspace</key>
</ns1:getCustAttr>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
它应该看起来像这样(通过 SOAPUI 成功运行):
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://server.opsware.com">
<soapenv:Header/>
<soapenv:Body>
<ser:getCustAttr soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<self xsi:type="ser:ServerRef">
<id xsi:type="xsd:long">19250001</id>
</self>
<key xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">HPSW_ED_win32_diskspace</key>
<useScope xsi:type="xsd:boolean">False</useScope>
</ser:getCustAttr>
</soapenv:Body>
</soapenv:Envelope>
我认为问题是 xsi:type="ser:ServerRef"没有设置,并且不确定如何使用 SOAPpy 来做到这一点...
最佳答案
有两种不同类型的 soap 样式(RPC literal and Document literal),看起来提到的 soap 服务器只支持 RPC
我在 SOAP 水和 SOAP 水中看到了这个问题。经过一些测试和基准测试,我发现了问题。ASP.NET 和 soappy。您需要使用 Python 生成一个 rpc 信封,而不是文档文字信封样式。
只是ZSI(The Zolera Soap Infrastructure)适用于 asp.net 和复杂类型。
此命令为您生成客户端代理:
wsdl2py http://terraservice.net/TerraService.asmx?WSDL
您可以在代码中导入生成的模块并使用网络方法。
关于python - SOAPpy 的复杂类型问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5902199/
嗨,我试图在我的 mac 上为 python 安装 SOAPpy 模块...... 我安装了 xml 和 fpconst 并尝试安装这个 SOAPpy 模块,但我得到了错误......如下所示: ve
我正在使用 SOAPpy 访问 SOAP Web 服务。对 findPathwaysByText 函数的调用工作正常: server.findPathwaysByText (query= 'WP619
我正在尝试从 HP Server Automation 访问我的 WSDL 中定义的函数,我能够获取服务器等,但无法通过 SOAPpy 提取任何需要服务器引用的内容。 import SOAPpy fr
如何在 SOAPpy 客户端中启用某种详细输出和/或日志记录?这样我就可以诊断出一些相当奇怪的问题,这些问题会导致 Web 服务调用在没有任何异常或崩溃的情况下阻止执行。 最佳答案 SOAPpy 已死
我调用a WSDL web service从 Python 使用 SOAPpy .我需要调用方法 Auth_login .这有 2 个参数 - 第一个是 API key 的字符串;第二个,custom
我目前正在为使用 Axis2 WS-Security 的应用程序开发 python 网络服务 简化后的相关代码是 from SOAPpy import SOAPProxy from SOAPpy im
我需要知道 SOAPpy 做了什么请求。有谁知道该怎么做吗? 最佳答案 SOAPpy 有一个配置对象,可用于设置不同的属性。要查看请求,您可以使用 dumpSOAPOut 或 dumpSOAPIn 甚
我对 python 很陌生,一直在研究如何安装模块。我一直在尝试安装 SOAPpy 模块,但只成功安装了所需的模块 fpconst、wstools 和 setuptools(未按要求提及,但最终仍然是
回溯(最近一次调用最后一次): File "naturalClient.py", line 9, in from SOAPpy import SOAPProxy ImportError: No mo
我在正确连接 Axis2 上运行的 SOAP API 时遇到问题: 我应该用两个参数(loginName 和 password)调用登录方法,它会返回一个我将用于后续交互的身份验证 token 。 #
我正在尝试使用 Python 解释器中的以下代码调用一个简单的 SOAP 网络服务: from SOAPpy import WSDL wsdl = "http://www.webservicex.ne
我尝试通过在 Python 2.7.5 上使用 SOAPpy 来调用使用 SOAP 请求的方法该方法称为 GetCursOnDate 并返回汇率。它需要一个日期时间参数。 我正在使用以下代码: fro
我正在尝试使用 SOAPpy(Python SOAP 库)与我们的 JIRA 服务器建立 WSDL SOAP 连接。 一切似乎都很好,除非我尝试查找特定问题。通过 Web 浏览器查找错误 ID 实际上
我正在尝试使用 SOAPpy 调用网络服务: from SOAPpy import SOAPProxy url = 'http://www.webservicex.net/WeatherForecas
我正在尝试通过在 Python 2.7 上使用 SOAPpy 来调用使用 SOAP 请求的方法。该方法称为 GetCursOnDate 并返回汇率。它需要一个日期参数。 我正在使用以下代码: from
如何从 SOAPpy 响应中读取 s SOAP header ? 最佳答案 如果不修改 SOAPy,则不能。 当您调用 SOAP 方法时,SOAPy 会运行它自己的 request 函数,该函数会返回
首先,我承认我是网络服务的新手,尽管我熟悉 HTML 和基本的网络内容。我使用 Python 创建了一个快捷的 Web 服务,它调用 MySQL 数据库中的一个存储过程,它只返回一个 BIGINT 值
我需要使用 python SOAPpy 模块构建此 SOAP 查询: 88888-88888-8888-8888-888888888888
我对 GAE python 上的 WSDL (SOAP) Web 服务非常陌生,我读了一些服务,例如 SOAPpy , SUDS 实际上,我无法弄清楚哪种服务最适合且最容易使用。 伙计们,能否请您分享
我正在形成一个 SOAPpy 请求,但我不知道如何在标记中设置属性。这是我的代码: url = wsdlfile = 'https://stats2.overture.com/ExternalSOAP
我是一名优秀的程序员,十分优秀!