Closed GoogleCodeExporter closed 9 years ago
Missed the last two questions - I don't know what version I'm using, I
installed it with "pip" yesterday so presume its current, but I dont know how
to query the version number.
Its running on OSX but this doesn't appear to be OS dependent.
Original comment by mitra.ar...@gmail.com
on 11 Dec 2012 at 10:02
yes, this is in my TODO list too
could you provide a wsdl?
what server platform are you usign? (ie. .NET 4.x)
Original comment by reingart@gmail.com
on 14 Jan 2013 at 6:47
Any news about this issue? I have the same problem
Original comment by rocchi....@gmail.com
on 26 Jul 2013 at 10:49
I'm working on it ;-) ASAP I'll submit a new version with support, a
preliminary fix is partially working.
Could you provide the WSDL url and a test case?
The xml only is not enought to test the SOAP call.
BTW, SimpleXmlElement DOES ALREADY support multiple namespaces, you need to
specify the prefix or the uri (using the __call__ method):
# using the namespace prefix:
foo = SimpleXMLElement(test_xmlvend_try)
print "creditVendReq=", str(foo("soap:Body")("xvrev:creditVendReq"))
# using the namespace uri:
foo = SimpleXMLElement(test_xmlvend_try)
print "creditVendReq=", str(foo("Body",
ns="http://schemas.xmlsoap.org/soap/envelope/")("creditVendReq",
ns="http://www.nrs.eskom.co.za/xmlvend/revenue/2.1/schema"))
Original comment by reingart@gmail.com
on 26 Jul 2013 at 11:14
This seems to be fixed, so I'm closing this issue due inactivity, please reopen
providing answers and test data (wsdl) if the problem persist.
Original comment by reingart@gmail.com
on 22 Jan 2014 at 3:29
Original issue reported on code.google.com by
mitra.ar...@gmail.com
on 11 Dec 2012 at 10:00Attachments: