【问题标题】:SOAPpy, C# and object passingSOAPpy、C# 和对象传递
【发布时间】:2010-08-30 12:19:13
【问题描述】:

我正在尝试将 SOAPpy 客户端写入我的 C# WebService。它以 null 的形式到达 :(

如何从 WebService 使用的 C# SOAP 解析器中获取任何调试信息?

这是 Python 发送的内容:

<?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: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:UpdateSession xmlns:ns1="http://www.xlogic.pl/SENACA" SOAP-ENC:root="1">
   <xsd:Session>        
    <ID xsi:type="xsd:int">420</ID>
    <RecordCreationTime SOAP-ENC:arrayType="xsd:ur-type[6]" xsi:type="SOAP-ENC:Array"> 
     <item xsi:type="xsd:int">2010</item>
     <item xsi:type="xsd:int">8</item> 
     <item xsi:type="xsd:int">17</item>
     <item xsi:type="xsd:int">11</item> 
     <item xsi:type="xsd:int">13</item> 
     <item xsi:type="xsd:double">21.0</item>
    </RecordCreationTime>
    <ASP_SessionID xsi:type="xsd:string">92072674A04CB88D62776EA7</ASP_SessionID>
    <LangID xsi:type="xsd:string">fr-FR</LangID>
    <OneTimeKey xsi:type="xsd:string">a334cea18e014f4d8d04</OneTimeKey> 
   </xsd:Session>  
  </ns1:UpdateSession>
 </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

这是 C# 所期望的

<?xml version="1.0" encoding="utf-16"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:tns="http://www.xlogic.pl/SENACA"
      xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <tns:UpdateSession>
      <s href="#id1"/>
    </tns:UpdateSession>
    <tns:Session id="id1" xsi:type="tns:Session">
      <ID xsi:type="xsd:int">int</ID>
      <RecordCreationTime
            xsi:type="xsd:dateTime">dateTime</RecordCreationTime>
      <ASP_SessionID xsi:type="xsd:string">string</ASP_SessionID>
      <LangID xsi:type="xsd:string">string</LangID>
      <OneTimeKey xsi:type="xsd:string">string</OneTimeKey>
    </tns:Session>
  </soap:Body>
</soap:Envelope>

【问题讨论】:

  • 我有一些 .Net Web 服务,但从未有人使用 SOAPpy 正确使用它们(包括一些非常聪明的 python 开发人员)。每个人最终都没有使用 SOAPpy,而是转而手工制作 XML,只发送简单的 HTTP 请求。
  • 我写了一个小包装器,链接在我下面的答案中,它允许我正确使用 .Net webservices。

标签: c# python web-services soap soappy


【解决方案1】:

不是 Python 答案,但soapUI 是一个非常有用的工具,用于调试和自动测试 Web 服务。我在一个 C# WCF 项目中大量使用了它,它有多种客户端,包括 Python、Boo、Java 和 C#。

【讨论】: