Open GoogleCodeExporter opened 8 years ago
The parameter in the constructor to control the xml response (dialect) is
soap_server.
Which one you're using?
Sometimes this can be deducted from the WSDL, could you attach it?
Original comment by reingart@gmail.com
on 23 Jul 2014 at 8:59
I use "soap_server = 'Oracle'" as described at the top of the post.
BUT: I mean the OUTPUT, which pysimplesoap generates to send the PostRequest.
Not the Response from the WebService!
I'm not able to attach the WSDL, becaus ist a customer-Projekt which i can not
publish - i'm sorry.
Original comment by karsten....@gmail.com
on 28 Jul 2014 at 7:20
[deleted comment]
I found a temporary solution that suited my project's needs. In simplexml.py, I
commented out line 75 ~#element.setAttribute("xmlns", ns)~ and added ~pass~
beneath it, tildes not included.
To be specific, it was inside the add_child() function, nested into else-if-if.
(see below)
add_child(self, name, text=None, ns=True):
if not ns or self.__ns is False:
#stuff
else:
#stuff
if isinstance(ns, basestring):
#stuff
if ns:
# element.setAttribute("xmlns", ns)
pass
Original comment by ilb...@gmail.com
on 9 Jun 2015 at 9:34
Original issue reported on code.google.com by
karsten....@gmail.com
on 23 Jul 2014 at 11:48