Created
November 18, 2014 14:22
-
-
Save RaminNietzsche/a24a5f543780e01665d0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# فراخوانی کتابخانه | |
from suds.client import Client | |
# قراخوانی wsdl | |
# در برنامه لینک زیر با لینک اصلی برنامه باید جایگزین شود | |
cl = Client('http://wsdl.url') | |
# آدرس کالبک | |
call_back = 'http://callback.url' | |
# اجرای یک فانکشن wsdl | |
result = cl.service.requestpayment( | |
"username", | |
password, | |
call_back, | |
price, | |
id | |
) | |
# مقدار result طبق مستندات wsdl مشخص می کند که احرا موفقیت آمیز بوده یا خیر |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment