Python Zeep 客户端请求在 xml 异常中抛出错误
Python Zeep Client request throws error in xml exception
当我 运行 以下代码时,我不断收到以下错误: here is an error in XML document (113, 25). ---> The string '' is not a valid Boolean value.
我不明白为什么会这样。 Here 是文档,根据它不需要布尔字段。
from zeep import Client
client = Client('http://services.resumeparsing.com/ResumeService.asmx?wsdl')
response = client.service.ParseResume(request={'AccountId': 'XXXXXXX',\
'ServiceKey':'XXXXXXXXX',\
'FileBytes': file_bytes, 'FileText': file_text, \
})
print(response)
任何帮助将不胜感激!
这里是 zeep 的作者;您使用的是哪个版本?似乎 zeep 生成 XML 根据服务器无效。
您可以通过启用调试日志级别查看发送了哪个 XML,请参阅 http://docs.python-zeep.org/en/latest/transport.html#debugging
当我 运行 以下代码时,我不断收到以下错误: here is an error in XML document (113, 25). ---> The string '' is not a valid Boolean value.
我不明白为什么会这样。 Here 是文档,根据它不需要布尔字段。
from zeep import Client
client = Client('http://services.resumeparsing.com/ResumeService.asmx?wsdl')
response = client.service.ParseResume(request={'AccountId': 'XXXXXXX',\
'ServiceKey':'XXXXXXXXX',\
'FileBytes': file_bytes, 'FileText': file_text, \
})
print(response)
任何帮助将不胜感激!
这里是 zeep 的作者;您使用的是哪个版本?似乎 zeep 生成 XML 根据服务器无效。
您可以通过启用调试日志级别查看发送了哪个 XML,请参阅 http://docs.python-zeep.org/en/latest/transport.html#debugging