soaplib - python - 标头中缺少命名空间

时间:2014-08-29 09:26:04

标签: python web-services soap soaplib

我正在使用soaplib(python)来创建一个webservices服务器。

我已经实现了一个方法并生成了一个wsdl,这样任何soap客户端都可以轻松使用web服务。

我正在使用soapUI验证我的web服务,而soapUI表示响应不正常。

我发现XML中出了什么问题,但无法使soapLib使用正确的方法......

这是我的PythonClass:

class AgentSoapManager(SimpleWSGISoapApp):
    """ Interface for web services """
    @soapmethod(String, _returns = String)
    def get_streaming_url(self, application_identifier):
        returns "rtsp://192.168.10.224:51081/camera8"

我正在使用WSGIServer。

这是我的电话(根据soapUI,这是可以的):

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:agen="agent.soap.AgentSoapManager.AgentSoapManager">
   <soapenv:Header/>
       <soapenv:Body>
            <agen:get_streaming_url>
                 <application_identifier>0800275ec350_jaguar_8</application_identifier>
            </agen:get_streaming_url>
       </soapenv:Body>
</soapenv:Envelope>

以下是我的网络服务的错误回复

<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
        <get_streaming_urlResponse>
            <get_streaming_urlResult xsi:type="xs:string">
                 rtsp://192.168.10.224:51081/camera8
             </get_streaming_urlResult>
        </get_streaming_urlResponse>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

这是错误:

line-1: Missing part with name [{agent.soap.AgentSoapManager.AgentSoapManager}get_streaming_urlResponse

以下是我发现的响应,根据soapUI

,这是正常的
<SOAP-ENV:Envelope xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:agen="agent.soap.AgentSoapManager.AgentSoapManager">
    <SOAP-ENV:Body>
        <agen:get_streaming_urlResponse>
            <get_streaming_urlResult>
                rtsp://192.168.10.224:51081/camera8
            </get_streaming_urlResult>
        </agen:get_streaming_urlResponse>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

1 个答案:

答案 0 :(得分:0)

我通过将我的Soap lib更改为Spyne来完成这项工作。没有太多改变让它工作,请求/响应这次直接确定