Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

django - asynchronous SOAP api call using Python

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...