Skip to content

Instantly share code, notes, and snippets.

@RaminNietzsche
Created November 18, 2014 14:22
Show Gist options
  • Save RaminNietzsche/a24a5f543780e01665d0 to your computer and use it in GitHub Desktop.
Save RaminNietzsche/a24a5f543780e01665d0 to your computer and use it in GitHub Desktop.
# فراخوانی کتابخانه
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