开发者

Python Soap Server for the Quickbooks Webconnector

I'm writing a Soap Serve开发者_开发技巧r to interact with the quickbooks webconnector, and I really don't even know where to start. I have the wsdl file, and a list of all the functions and arguments that the web connector needs, but I really just don't know where to start. I couldn't find any real documentation on this for python, there are some php tutorials, but that's not quite what I need. I tried using ZSI and I got it generating the files, but I had no idea how to use them. If anyone has any experience with this, I'd appreciate your input.

Thanks


Well ids their some one who had hands on this cause i also try same thind with SOAPpy and proxy wsdl services but no result on this

Sample Code :

from SOAPpy import WSDL    
url='http://developer.intuit.com/uploadedFiles/Support/QBWebConnectorSvc.wsdl'    
proxy = WSDL.Proxy(url)
print 'Available methods:'
for method in proxy.methods.keys():    
    print method    
    ci = proxy.methods.get(method)    
    for param in ci.inparams:    
        print param.name.ljust(20), param.type    
    print
autho = proxy.authenticate(user,pass)

This is my fisrt hand on this cam any one guide me forward. in this ??

Thank You

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜