missing wsdl:service definitions in the WSDL

3.7k views Asked by At

I'm trying to use ZEEP to do SOAP requests.

I got this request:

def status(request, IP):
    URL = "http://" + IP + "/Service"
    session = Session()
    session.auth = HTTPBasicAuth('username', 'password')
    client = Client(URL,
                    transport=Transport(session=session), strict=False)

    response = client.service.Method1(request={'getList'})

    return response

But I'm hitting the error missing wsdl:service definitions in the WSDL.

I'm stuck and can't find any more way to fault search. Got any ideas?

Edit for context. This is a hardcoded request that works and I'm trying to do with zeep:

 def GetList(session, IP):        

        request = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">'
        request = request + '<soapenv:Header>'
        request = request + '<session>' + session + '</session>'
        request = request + ' </soapenv:Header>'
        request = request + ' <soapenv:Body>'
        request = request + '<getList/>'
        request = request + '</soapenv:Body>'
        request = request + '</soapenv:Envelope>'

        request = u"""""" + request + """""".format()

        encoded_request = request.encode('utf-8')

        headers = {"Host": ""+ IP +"",
                   "Content-Type": "text/xml; charset=UTF-8",
                   "Content-Length": str(len(encoded_request)),
                   "SOAPAction": ""}

        response = requests.post(url="http://"+ url +"/Service",
                                 headers=headers,
                                 data=encoded_request,
                                 verify=False)

        return response.content

Edit 2. Add the wsdl

<?xml version="1.0" encoding="UTF-8"?>    
-<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:intf="http://xml.apache.org/axis/wsdd/ " xmlns:impl="http://xml.apache.org/axis/wsdd/ " xmlns:apachesoap="http://xml.apache.org/xml-soap" targetNamespace="http://xml.apache.org/axis/wsdd/ ">    
-<wsdl:types>    
-<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://xml.apache.org/axis/wsdd/ ">    
<element type="xsd:anyType" name="parseMessage"/>    
<element type="xsd:anyType" name="parseMessageReturn"/>    
</schema>    
</wsdl:types>    
-<message name="parseMessageResponse">    
<part name="parseMessageReturn" element="impl:parseMessageReturn"/>    
</message>    
-<message name="parseMessageRequest">    
<part name="part" element="impl:parseMessage"/>    
</message>    
-<portType name="MessageHandlerProxy">    
-<operation name="parseMessage">    
<input name="parseMessageRequest" message="impl:parseMessageRequest"/>    
<output name="parseMessageResponse" message="impl:parseMessageResponse"/>    
</operation>    
</portType>    
-<binding type="impl:HandlerProxy" name="ServiceBinding">    
<wsdlsoap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>    
-<operation name="parseMessage">    
<wsdlsoap:operation soapAction=""/>    
-<input name="parseMessageRequest">    
<wsdlsoap:body use="literal" namespace="http://xml.apache.org/axis/wsdd/ "/>    
</input>    
-<output name="parseMessageResponse">    
<wsdlsoap:body use="literal" namespace="http://xml.apache.org/axis/wsdd/ "/>    
</output>    
</operation>    
</binding>    
-<service name="ProxyService">    
-<port name="Service" binding="impl:ServiceBinding">    
<wsdlsoap:address location="http://ip.ip.ip.ip/Service"/>    
</port>    
</service>    
</definitions>
1

There are 1 answers

6
Galil On

You have to add the ?wsdl at the end of your URL variable.

Also, the way you are making the call is not correct. A call to getList should look like:

def status(request, IP):
    URL = "http://" + IP + "/Service?wsdl"
    session = Session()
    session.auth = HTTPBasicAuth('username', 'password')
    client = Client(URL,
                    transport=Transport(session=session), strict=False)

    response = client.service.getList([add the arguments here])

    return response