Questions tagged [soappy]

SOAPy is a SOAP/XML Schema Library for Python.

75 questions
0
votes
1 answer

How can make valid date with SOAPpy?

I have the folloving SOAP code, and from server I become as answer: invalid endDate Here is my code: from SOAPpy import WSDL2 as WSDL from SOAPpy import Types from lxml import etree url = 'http://www.mnb.hu/arfolyamok.asmx?wsdl' namespace =…
vatay
  • 387
  • 2
  • 9
0
votes
1 answer

How to know what exceptions a SOAPPy library is rising

this is more a question than a real problem. I have some code using SOAPpy library in python : from SOAPpy import SOAPProxy ... try: connection = SOAPProxy(settings.SOAP_URL) session = connection.login(username, password) user =…
morony
  • 15
  • 4
0
votes
1 answer

insall SOAPpy using pip

I want to install SOAPpy library on my windows 7 but when I run "pip install soappy" or "easy_install soappy" I get this error: "ImportError: No module named WSDLTools" also I try download zip file and compile and install it but again I get this…
Saber Solooki
  • 1,182
  • 1
  • 15
  • 34
0
votes
1 answer

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 to compress it, but as far as I have searched in…
markuz
  • 909
  • 8
  • 13
0
votes
0 answers

Sending array parameter to web service method

I've a PHP SOAP web service method using Yii, here's the code: /** * return list of cities * @param array $attributes filter for City * @return array * @soap */ public function getCities($attributes=array()) { …
0
votes
1 answer

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
Julien Nephtali
  • 455
  • 1
  • 6
  • 12
0
votes
3 answers

SOAPpy result to JSON

I am sending a request to an external WDSL service, which for some reason returns a huge object. I am connecting using SOAPpy, and I would like to parse the result to JSON. However I am getting a lot of objects within the object, like…
David
  • 679
  • 1
  • 9
  • 22
0
votes
1 answer

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.
Stephen Paulger
  • 5,204
  • 3
  • 28
  • 46
0
votes
1 answer

SOAPpy - create a Jira issue and define a component?

I can't figure how to create a jira issue and define its component with SOAPpy: client = so.WSDL.Proxy(cfg_wsld) auth_token = client.login(cfg_username, cfg_password) issue_params = dict() issue_params['project'] = project issue_params['type'] =…
abolotnov
  • 4,282
  • 9
  • 56
  • 88
0
votes
1 answer

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 --
aatifh
  • 2,317
  • 4
  • 27
  • 30
0
votes
1 answer

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 server.soapproxy.config.dumpSOAPIn = 1 result =…
David Silva
  • 1,939
  • 7
  • 28
  • 60
0
votes
1 answer

Why Python omits attribute in the SOAP message?

I have a web service that returns following type:
czuk
  • 6,218
  • 10
  • 36
  • 47
0
votes
1 answer

Python SOAPpy Errors

Below is my Python 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 server = SOAPpy.SOAPServer((host,…
rajaneesh
  • 189
  • 2
  • 5
  • 11
0
votes
1 answer

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 libraries to use SOAP. The tutorial says I need 3…
koleS
  • 1,263
  • 6
  • 30
  • 46
0
votes
2 answers

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 to use the example here, but the server I'm trying…
tomaski
  • 957
  • 8
  • 15
1 2 3 4
5