Open GoogleCodeExporter opened 9 years ago
In my local environment is good but in the server is not working
Original comment by mglo...@narrowcastdigital.com
on 26 Feb 2014 at 10:04
It seems that you're passing a None value to some parameter, and it cannot be
converted correctly to xml
Could you provide a basic test case (python script + wsdl if applicable) to see
what is going on and how it can be reproduced?
BTW, are you trying the latest version from the repository?
https://pysimplesoap.googlecode.com/archive/default.zip
Original comment by reingart@gmail.com
on 26 Feb 2014 at 11:48
Thank you very much I just fix the bug, I add this lines on the
/usr/lib64/python2.6/xml/dom/minidom.py
if data:
data = data.replace("&", "&").replace("<", "<"). \
replace("\"", """).replace(">", ">")
writer.write(data)
Thank you for your prompt response, now all is good
Original comment by mglo...@narrowcastdigital.com
on 26 Feb 2014 at 11:59
Original issue reported on code.google.com by
mglo...@narrowcastdigital.com
on 26 Feb 2014 at 10:02