Python 客户要求 Zeep 排除错误 xml

当我启动以下代码时,我不断收到以下错误:
here is an error in XML document /113, 25/. ---> The string '' is not a valid Boolean value.

我不明白为什么会发生这种情况。
http://resumeparsing.com/#ParseResume
文档,并按照它,不需要逻辑字段。


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/


任何帮助将不胜感激!
已邀请:

裸奔

赞同来自:

Zipu作者在这里; 你用什么版本? 看起来 zeep 生成 XML, 符合服务器不允许的。

你可以看到什么 XML 通过包括调试日志级别,查看
http://docs.python-zeep.org/en ... gging

要回复问题请先登录注册