断言错误用肥皂水(Assertion Error with suds)

2019-09-29 20:36发布

我想通过jurko(Python的3.5.2)从官方点子库以发送使用肥皂水一些SOAP。

这里是我的代码。 不幸的是,我应该隐藏自己的登录名和密码,所以你不能只是复制并粘贴到你的终端。

my_login = 'login'
my_password = 'password'
barcode = '10100082848426'
message = \
                """<?xml version="1.0" encoding="UTF-8"?>
                                <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:oper="http://russianpost.org/operationhistory" xmlns:data="http://russianpost.org/operationhistory/data" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
                                <soap:Header/>
                                <soap:Body>
                                   <oper:getOperationHistory>
                                      <data:OperationHistoryRequest>
                                         <data:Barcode>""" + barcode+ """</data:Barcode>
                                         <data:MessageType>0</data:MessageType>
                                         <data:Language>RUS</data:Language>
                                      </data:OperationHistoryRequest>
                                      <data:AuthorizationHeader soapenv:mustUnderstand="1">
                                         <data:login>"""+ my_login +"""</data:login>
                                         <data:password>""" + my_password + """</data:password>
                                      </data:AuthorizationHeader>
                                   </oper:getOperationHistory>
                                </soap:Body>
                             </soap:Envelope>"""
result = client.service.getOperationHistory(__inject={'msg':message})

在这里,我得到一个错误:

Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/usr/local/lib/python3.5/site-packages/suds/client.py", line 521, in __call__
    return client.invoke(args, kwargs)
  File "/usr/local/lib/python3.5/site-packages/suds/client.py", line 760, in invoke
    assert msg.__class__ is suds.byte_str_class
AssertionError

从回溯,我的理解是什么错误,但我想不出什么原因造成的。 有什么建议么?

注:本请求是俄罗斯邮政API请求,所有需要采取这里

Answer 1:

我已经一段时间后,再次运行到这个问题,这似乎是与编码问题。 我把我的CentOS的区域设置为“ru_RU.utf-8”,一切都开始工作。



Answer 2:

这应该可以解决这个问题:

from suds import byte_str
message = byte_str(message)


文章来源: Assertion Error with suds
标签: python soap suds