SOAPy is a SOAP/XML Schema Library for Python.
Questions tagged [soappy]
75 questions
0
votes
1 answer
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 can handle those types of name with it.
I've tried…

Tony
- 3,425
- 10
- 30
- 46
0
votes
1 answer
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 machine, I get an error saying that its unable to…

Rakesh V
- 33
- 5
0
votes
1 answer
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 has the escape characters.
WSDLFILE =…

dm03514
- 54,664
- 18
- 108
- 145
0
votes
1 answer
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)?

Andrey Koltsov
- 1,956
- 6
- 24
- 43
0
votes
1 answer
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 not be…

smilingwang
- 321
- 2
- 13
0
votes
2 answers
Can anyone tell me why I'm getting this error in SOAPpy?
server = SOAPpy.WSDL.Proxy(wdf)
Traceback (most recent call last):
File "", line 1, in
server = SOAPpy.WSDL.Proxy(wdf)
File "C:\Python27\lib\soapy\SOAPpy\WSDL.py", line 62, in __init__
self.wsdl =…

Extractfreeze
- 51
- 5
0
votes
0 answers
WSDL module: TypeError: cannot concatenate 'str' and 'NoneType' objects
I'm trying to use the WSDL package in python. The error I'm getting is associated with other packages and I'm not sure how to trace the problem. Here's the error:
python…

user6035379
- 181
- 3
- 16
0
votes
1 answer
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?

Extractfreeze
- 51
- 5
0
votes
1 answer
Access Siebel WSDL through Python Packages (SOAPpy, suds, requests)
I am trying to access Siebel WSDL through python module.
My End Scenario is creating Service request in Siebel through external link.
I have tried,
Requests, Suds and soapPY.
When Importing WSDL file to SOAP-UI after making changes to URL and…

Alok Agarwal
- 3,071
- 3
- 23
- 33
0
votes
1 answer
How to setup UTF-8 in Python SOAPpy
I try to use SOAPpy to connect to a webservice. Each of the Methods from the Service uses Username an Passwort to authentification.
The Passwort has one special german char ("ä").
When i am excecuting the following script:
#!/usr/bin/env python
#…

user2111880
- 671
- 9
- 17
0
votes
1 answer
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

user14128
- 2,547
- 4
- 20
- 16
0
votes
1 answer
SOAPpy WSDL client authentication
I'm trying to do simple SOAP call with WSDL and authentication, but don't know really how to pass credentials to the call. Is this possible with WSDL, or should I do this some other way?
from SOAPpy import WSDL
WSDLFILE = 'link/to/wsdl/file'
server…

erhesto
- 1,176
- 7
- 20
0
votes
0 answers
Trying to connect to a SOAP / WSDL service using Python (SOAPPy) - getting ERROR
Im trying to connect to a SOAP/WSDL server through my Python script:
# based on the tutorial:
# http://www.diveintopython.net/soap_web_services/
import pprint
from SOAPpy import WSDL
WSDLFILE =…

am1234
- 59
- 2
- 6
0
votes
1 answer
schema validation error with spyne and soappy
I'm using Spyne to create simple webservie, and when i call that sample service i get following error :
faultType:

Asif
- 479
- 2
- 6
- 12
0
votes
0 answers
SOAPpy does not return expected data list
I am new programing and I developed a small webservice in python using SOAPpy.
This webservice get some data from a sql Server and it returns in a list of tuples with this format [(a,b,c),(d,e,f),...]
This is the server code:
class ws():
def…

Sergio Álvarez
- 1
- 1