Trying to make a SOAP call using Python Suds.It imports the WSDL fine, and the client it generates looks well-formed, but I am unable to access the methods.
When I try to execute this code: mmurl = \'http://server/_mmwebext/mmwebext.dll?WSDL?开发者_JAVA百科server=localhost\'
I am using suds to make some RPC calls that require arguments like suds.sax.element.Element(\'html\').append(Element(\'body\'))
I\'m using suds library to fetch a list of products from a webservice. This is a sample code: from suds.client import Client
I have the following code: from suds.client import Client im开发者_JAVA百科port logging logging.basicConfig(level=logging.INFO)
i\'m using suds 0.4 and python 2.6, to communicate with remote server. It\'s WSDL loads perfectly, but any function call returns error. Something is wrong with that server.
I\'m currently running python suds against a wsdl file and its corresponding 50+ xsd files.The following call to Client takes about 90 seconds:
I can\'t seem to get suds working with my setup.I have to pass a context, with a remote user set before I can use any of the functions in the API.What I tried to do was this:
From suds documentation, I can create a Client if I have a url for the WSDL. from suds.client import Client
I\'m trying to write a Python client for a a WSDL service. I\'m using the Suds library to handle the SOAP messages.