Tagged Questions
0
votes
0answers
24 views
SOAPpy: Missing Namespace Prefix
I wrote a webservice using SOAPpy. Everything is working fine, except the outgoing SOAP message does not contain the namespace (i.e. 'xmlns'). Compare sections in Incoming SOAP and Outgoing SOAP.
...
0
votes
0answers
33 views
Need help accessing save.tv SOAP interface from python using soappy
I'm trying to access the inofficial SOAP interface of www.save.tv through python. The following provides me the list of methods/parameters:
from SOAPpy import WSDL
url = ...
0
votes
1answer
110 views
When I consume wsdl using python, I get an xml.parsers.expat.ExpatError
I followed these instructions to make a local wsdl.
Some lines in my local WSDL:
< wsdl:definitions
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
...
0
votes
0answers
20 views
Registering Functions that belong to Classes in SOAPpy (Python)
I am developing a server/client application using SOAPpy. I currently have some code similar to this on my server:
class auth:
def login(self, username, password):
login code
def ...
0
votes
0answers
52 views
Unable to access some of methods in cisco UCM's perfmonservice using SOAPpy?
I am trying to use a web service with Python and SOAPpy as a
client. Some of the method paramters in this web service's WSDL are
asking for an "ObjectNameType" type. Here is my code so far:
import ...
0
votes
0answers
57 views
Bad Types SAX Exception - when i am trying to access perfmonservice?
i am using SOAPpy-0.12.0 , Python and wsdl.
For accessing the perfmon webservice provided by Cisco UCM. I want to fetch the perfmon counter data. For this i have a method ...
0
votes
1answer
278 views
Validation of input data in SOAPpy (WSDL)
My client.py looks like this:
from SOAPpy import WSDL
wsdlFile = 'D:/Downloads/w1.1.wsdl'
server = WSDL.Proxy(wsdlFile)
server.soapproxy.config.dumpSOAPOut = 1
...
1
vote
1answer
140 views
python WSDL.Proxy behind a http proxy
I have a simple code that works when I'm not behind any proxy but doesn't work when I am behind a proxy. So is there any way I can specify that the connection has to be made through the http_proxy in ...
0
votes
1answer
874 views
Installing SOAP for Python
I am new to Python, trying to learn it by doing a tutorial based on "Dive into Python" book.
I am already in chapter about SOAP and I encountered some problems, when I tried to install all required ...
3
votes
1answer
161 views
Soap get arguments with wrong order in twisted
Now i use twisted.soap to build my soap server, I'd like to build a function with plural arguments like this:
def soap_searchFlight(self,name=None,startpoint=None,destination=None):
d=Deferred()
...
3
votes
1answer
89 views
Enable Verbose Logging in SOAPpy
How does one enable some sort of verbose output and/or logging in a SOAPpy client? This is so that I can diagnose some rather odd issues that cause the web service call to block execution without any ...
0
votes
1answer
105 views
SOAP methods with point on its name description
Ok, i've a problem consuming a soap client with python with a soap server that gives method's name with points on it like 'MyClass.mymethod(xs:string)'.
This is cause by a PHP lib called nusoap that ...
4
votes
1answer
416 views
How can I pass a SSL certificate to a SOAP server using SOAPpy / Python
I am building a script to access a HTTPS/TLS TCP site that requires a X.509 certifcate that I have as a .pfx file.
I am using SOAPpy 0.12.5 and Python 2.7 and have started off with code as below,
...
1
vote
1answer
360 views
i am getting error “no schemaLocation attribute in import” when using Python client accessing JIRA via SOAP
here is the sample code :
#!/usr/bin/env python
# Sample Python client accessing JIRA via SOAP. By default, accesses
# http://jira.atlassian.com with a public account. Methods requiring
# more than ...
0
votes
1answer
629 views
SOAPpy installation unable to find fpconst eventhough its installed
I am a complete novice to the python world and have recently been asked to migrate a legacy application that runs on Python 2.4.15, SOAPpy Module & fpconst.
While installing SOAPpy 0.12.4 on the ...
2
votes
1answer
545 views
SOAPpy - how to pass a security Header?
Im currently developing a python webservice for an application which uses Axis2 WS-Security
the simplified relevant code is
from SOAPpy import SOAPProxy
from SOAPpy import WSDL
file = ...
1
vote
1answer
372 views
How do I call IBM IMM methods using SOAPpy?
I'm trying to use SOAPpy to call various SOAP methods of an IBM IMM (Integrated Management Module). Unfortunately I'm rather new to SOAP and can't figure it out at all.
I don't have any kind of WSDL, ...
0
votes
1answer
226 views
SOAPpy returning an XML string. How do I get the library to parse the xml for me?
I am using SOAPpy, and Dive Into Python http://diveintopython3.ep.io/http-web-services.html says it should be returning a dictionary.
I am making a simple request, that returns an xml response that ...
3
votes
1answer
840 views
Complex Type issue with SOAPpy
I'm trying to access a function defined in my WSDL from HP Server Automation, I'm able to get servers/etc, but not able to pull anything that takes a server reference specifically via SOAPpy.
import ...
1
vote
1answer
3k views
Soap call in Python
I tried to call a soap service. My call is success but its returns empty value.Below i attached my soap request and response schema. Its takes 1d array as input and return that array.
Request ...
1
vote
1answer
934 views
Problem with namespaces in SOAPpy
I'm having an issue correctly interfacing with a SOAP API running on Axis2:
What happens is I should call the login method with two arguments (loginName and password) and it returns an authentication ...
0
votes
1answer
153 views
Is it possible to run webservice based on SOAPpy with mod_wsgi under Apache?
Is it possible to run webservice based on SOAPpy with mod_wsgi under Apache?
if yes can you post link to sample(example)?
1
vote
2answers
762 views
what is the type of the variable
I am a very newbie in Python I have the folllowing code :
from SOAPpy import WSDL
fichier_wsdl = 'http://geocoder.us/dist/eg/clients/GeoCoder.wsdl'
wsdl = WSDL.Proxy(fichier_wsdl)
callInfo = ...
0
votes
1answer
279 views
wsgi + Django: SOAPpy(pyXML) modules Import Error
In the command line the code works perfect,
but throw import error when use django + mod_python or wsgi +apache
The message is:
ImportError at /test2/
DLL load failed: The specified module could ...
0
votes
2answers
416 views
Can anyone tell me why I'm getting this error in SOAPpy?
server = SOAPpy.WSDL.Proxy(wdf)
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
server = SOAPpy.WSDL.Proxy(wdf)
File ...
0
votes
1answer
49 views
Where do you get Python SOAPPy forwindows?
I can't seem to install it, computer doesn't know what to open it with, is there something wrong? Do you know a website where I can install it?
0
votes
1answer
514 views
SOAPpy, C# and object passing
I'm trying to write a SOAPpy client to my C# WebService. It is arriving as null :(
How can I get any debug from the C# SOAP parser that WebService uses?
This is what Python sends:
<?xml ...
2
votes
1answer
279 views
2
votes
1answer
535 views
How do I set XML attributes in SOAPpy with python?
I am forming a SOAPpy request but I can't figure out how to set the attributes in a tag. Here is my code:
url = wsdlfile = 'https://stats2.overture.com/ExternalSOAP/statsPMCAPI_1_0.wsdl'
n = ...
0
votes
2answers
635 views
When using soappy SOAPServer, how do I read the request's headers?
I've got a Python webservice using SOAPpy. The webservice server is structured as shown below:
class myClass:
def hello():
return 'world'
if __name__ == "__main__":
server = SOAPServer( ( ...
1
vote
1answer
2k views
Add Header section to SOAP request using SOAPpy
I need to construct this SOAP query using python SOAPpy module:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
3
votes
3answers
1k views
Has anyone combined soap.py or suds with python-ntlm?
I'd like to replace an app's current (badly busted and crufty) cURL-based (cURL command-line based!) SOAP client with suds or soap.py. Trouble is, we have to contact an MS CRM service, and therefore ...
0
votes
1answer
270 views
Compressed xml on soappy
I'm developing an application that uses webservices in python, both sides (server and client) are developed in Python and uses SOAPpy for the webservices, but, you know, the xml is too verbose, I want ...
0
votes
1answer
787 views
How do I pass a list parameter as multiple link-named elements instead of as an array in SOAPpy?
I am trying to pass multiple instances of an element to a web servile that has the following wsdl
<complexType name="OAMCommand">
<sequence>
<element name="m-strName" ...
0
votes
2answers
669 views
Turn SSLchecking off in M2Crypto in Python
Is there a way to turn off SSL checking so that WrongHost Exceptions are not generated when using SOAPpy in python.
0
votes
1answer
649 views
python soappy add header
I have the following PHP example code:
$client = new SoapClient("http://example.com/example.wsdl");
$h = Array();
array_push($h, new SoapHeader("http://example2.com/example2/", "h", "v"));
...
0
votes
1answer
198 views
Is SOAPpy the same thing as SOAPy?
I would normally read the documentation to figure that out, but the links from both websites are on sourceforge and both are 404ing.
0
votes
2answers
3k views
Can't call a webservice method using SOAPpy
I am trying to call a webservice using SOAPpy:
from SOAPpy import SOAPProxy
url = 'http://www.webservicex.net/WeatherForecast.asmx'
server = SOAPProxy(url);
print ...
0
votes
1answer
1k views
How to add header while making soap request using soappy
I have WSDL file, using that i wanted to make soap request which will look exactly like this --
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope ...
2
votes
1answer
1k views
Python SOAP clients will not work with this WSDL
Thus far I've tried to access this WSDL:
https://login.azoogleads.com/affiliate/tool/soap%5Fapi
from the two common Python SOAP clients that I'm aware of: SOAPpy and ZSI.client.Binding. SOAPpy ...
7
votes
5answers
1k views
Why the trailing slash in the web service is so important?
I was testing a web service in PHP and Python. The address of the web service was, let's say, http://my.domain.com/my/webservice. When I tested the web service in PHP using that URL everything worked ...
0
votes
1answer
410 views
Why Python omits attribute in the SOAP message?
I have a web service that returns following type:
<xsd:complexType name="TaggerResponse">
<xsd:sequence>
<xsd:element name="msg" type="xsd:string"></xsd:element>
...
0
votes
1answer
1k views
python SOAPpy problem
This my code
service part
class Test:
def hello():
return "Hello World"
server Part
import SOAPpy
from first_SOAP import *
host = "127.0.0.1"
port = 5551
SOAPpy.Config.debug = 1
...
0
votes
2answers
658 views
Adding Cookie to SOAPpy Request
I'm trying to send a SOAP request using SOAPpy as the client. I've found some documentation stating how to add a cookie by extending SOAPpy.HTTPTransport, but I can't seem to get it to work.
I tried ...
3
votes
2answers
513 views
SOAPpy - reserved word in named parameter list
I'm using SOAPpy to access a SOAP Webservice. This call to the function findPathwaysByText works just fine:
server.findPathwaysByText (query= 'WP619', species = 'Mus musculus')
However, this call ...
0
votes
1answer
290 views
How to disable v1 tag in a Web service request with SoapPy?
I'm trying to use SOAPpy to write a web service client. However after defining WSDL object, a call to a web-service method is wrapped in a
<v1> .. actual parameters .. </v1>
How can I ...
1
vote
4answers
3k views
What's wrong with my Python SOAPpy webservice call?
I am playing around trying to call a simple SOAP webservice using the following code in the Python interpreter:
from SOAPpy import WSDL
wsdl = "http://www.webservicex.net/whois.asmx?wsdl"
proxy = ...
0
votes
2answers
513 views
How to access Yahoo Enterprise Web Services using Python SOAPpy?
I have a PHP script which works and i need to write the same in Python but SOAPpy generates a slightly different request and i'm not sure how to fix it so the server likes it.
The request generated ...
0
votes
1answer
1k views
Adding a SOAP header to a SOAPpy request
Does anyone know how to do this? I need to add a header of the form:
value1
value2
31
votes
3answers
83k views
Public free web services for testing soap client [closed]
Are there any publicly available SOAP 1.2/WSDL 2.0 compliant free web services for testing a Python based soap client library (e.g. Zolera SOAP Infrastructure)?
So far, it appears to me that Google ...



