I am trying to send a request to an api using suds client. The request is formed like this: I am sending the request for this like: the error I am receiving is: Is this how I should be sending the request? It is definitely something to do with the apiHeader I think; not sure what though, I get the
Tag: soap
salesforce python Beatbox import error
I am trying to log in to salesforce.com’s sandbox using a URL, ID and PASS. I want to use SOAP API for that. When I try to import beatbox in python3, it throws an ImportError exception. However, I can confirm that beatbox is installed in python3. So what am I doing wrong? Is there any other way to do it?
Is it possible to use python suds to read a wsdl file from the file system?
From suds documentation, I can create a Client if I have a url for the WSDL. I currently have the WSDL file on my file system. Is it possible to use suds to read the WSDL file from my file system instead of hosting it on a web server? Answer try to use url=’file:///path/to/file’