用于 Quickbooks Webconnector 的 Python Soap 服务器

发布于 2024-10-26 04:13:06 字数 221 浏览 1 评论 0原文

我正在编写一个 Soap 服务器来与 Quickbooks WebConnector 交互,但我真的不知道从哪里开始。我有 wsdl 文件,以及 Web 连接器所需的所有函数和参数的列表,但我真的不知道从哪里开始。我找不到任何关于 python 的真正文档,有一些 php 教程,但这并不是我需要的。我尝试使用 ZSI,并让它生成文件,但我不知道如何使用它们。如果有人有这方面的经验,我将不胜感激您的意见。

谢谢

I'm writing a Soap Server 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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

演多会厌 2024-11-02 04:13:06

嗯,我知道他们有人已经接触过这个,因为我也尝试使用 SOAPpy 和代理 wsdl 服务进行同样的操作,但在这个

示例代码上没有结果:

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)

这是我第一次接触这个摄像头,任何人都引导我前进。
在这??

谢谢

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文