I'm using zeep to implementation web services, one of WSDLs doesn't work in python but in c# it's ok.
This is the code I am using:
from zeep import Client
wsdl = 'https://sep.shaparak.ir/payments/initpayment.asmx?wsdl'
client = Client(wsdl)
and, my error is:
requests.exceptions.HTTPError: 500 Server Error: Internal Server
Error for url: https://sep.shaparak.ir/payments/initpayment.asmx?wsdl
in c# it works! do you have any idea to help me ?!
zeepis doing something your selver cannot cope with, but a 500 Server Error could be pretty much anything. Do you see anything in the logs on the server? Can you compare the requests sent by C# with the one which fails? As it stands, this question may be too broad.