Python Suds肥皂客户端错误

时间:2013-04-12 10:09:26

标签: python suds

我正在尝试使用Python / SUDS连接到Web服务。

我在单个文件中有以下代码,我能够成功连接并收到回复。

class Suds_Connect:
    def __init__(self, url, q_user, q_passwd):

        logging.basicConfig(level=logging.INFO)
        logging.getLogger('suds.client').setLevel(logging.DEBUG)
        try:
            # fix broken wsdl
            # add <s:import namespace="http://www.w3.org/2001/XMLSchema"/> to the wsdl
            imp = Import('http://www.w3.org/2001/XMLSchema',
            location='http://www.w3.org/2001/XMLSchema.xsd')

            wsdl_url = url
            self.client = Client(wsdl_url, doctor=ImportDoctor(imp))
            t = HttpAuthenticated()


            security = Security()
            token = UsernameToken(q_user,q_passwd)
            security.tokens.append(token)
            self.client.set_options(wsse=security)



        except Exception, e: 
            print "Unexpected error:", sys.exc_info()[0]
            print str(e)
            sys.exit()


def CallWebMethod():

        try:
        print ' SUDS Client'
            print self.client
            Person= self.client.factory.create('ns0:Person')


            Person.name= 'bob'
            Person.age= '34'
            Person.address= '44, river lane'
            print self.client.service.AddPerson(Person)

        except WebFault, f:
            print str(f.fault)
        except Exception, e: 
            print str(e)

if __name__ == '__main__':
    errors = 0
    sudsClient = Suds_Connect('url','user','password')
    sudsClient.CallWebMethod()
    print '\nFinished:'

我想在Python客户端应用程序中使用此代码,该应用程序将从按钮单击事件中调用。 我试图实现这一点,我能够打印出客户端但是当我进行Web服务调用(print self.client.service.AddPerson(Person))时,我收到以下错误。

unsupported operand type(s) for +: 'NoneType' and 'str'

如何修复此错误?

2 个答案:

答案 0 :(得分:0)

看起来webservice调用返回None。需要其他信息来确定出现了什么问题。

首先 - 在调用Suds_Connect之前添加suds日志记录。这应该为您提供有关肥皂泡沫下发生情况的信息。

import logging
logging.basicConfig(level=logging.DEBUG) 

尝试获取更多调试信息的另一件事 - 请尝试以下代替print self.client.service.AddPerson(Person)

result = self.client.service.AddPerson(Person)
print str(result)

同样有用的是获得异常的完整堆栈跟踪 - 它发生在哪一行以及什么是调用堆栈。请尝试注释except Exception, e:案例的异常处理,并在此处发布您将获得的例外情况。

答案 1 :(得分:0)

确定,

似乎我遇到的问题与Soap Header一代有关。 在SUDS中有一个文件wsse.py,它包含一个函数xml()。

def xml(self):
        """
        Get xml representation of the object.
        @return: The root node.
        @rtype: L{Element}
        """
    root = Element('UsernameToken', ns=wssens)
    u = Element('Username', ns=wssens)
    u.setText(self.username)
    root.append(u)
    p = Element('Password', ns=wssens)
    p.set('Type', "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest")

    import sha
    import base64
    p.setText(base64.encodestring(sha.new(self.nonce + str(UTC(self.created)) + self.password).digest()).replace("\n", ''))

    root.append(p)
    if self.nonce is not None:
        n = Element('Nonce', ns=wssens)
        n.setText(base64.encodestring(self.nonce).replace("\n",''))
        root.append(n)
    if self.created is not None:
        n = Element('Created', ns=wsuns)
        n.setText(str(UTC(self.created)))
        root.append(n)
    return root

我在以下一行收到错误:

p.setText(base64.encodestring(sha.new(self.nonce + str(UTC(self.created)) + self.password).digest()).replace("\n", ''))

所以我注释掉了这一行,并添加了以下一行:

p.setText(self.password)

请注意,我正在通过https进行通话

问候

诺尔