asynchronous SOAP api call using Python

爱⌒轻易说出口 提交于 2019-11-28 05:54:00

问题


My purpose is to make a request from async SOAP api that take a data from pre-configured database and store it to another pre-configured database. I am using suds SOAP client for it.

    >>> from suds.client import Client

    >>> url="http://abcdjkfdsfjlkl?WSDL"
    >>> client=Client(url)
    >>> result=client.service.execute('City', 'Utility','147')
    >>> print result
    None

my api call going well and I am getting data in my database too, but I am not getting response from it whether my task it completed,error or in-progress, it might be possible that the way I am using that is wrong,

Please suggest me the proper way of doing this.

Note:- I am developing this project in python 2.7 using django 1.8, In above code I just checked api call by python terminal.

来源:https://stackoverflow.com/questions/39227719/asynchronous-soap-api-call-using-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!