Help me please to solve my problem with my python client. I want to get a reply from my SOAP service, written on C#. My service working correct when I try to test it in my browser, but when I started using my simple python client there were problems
from pysimplesoap.client import SoapClient
# create a simple consumer
client = SoapClient(
location = "http://localhost:1906/AbitService.asmx/",
action = "http://localhost:1906/AbitService.asmx/GetAbitReports",
soap_ns='soap',
trace = True,
ns = False)
# call the remote method
response = client.GetAbitReports ()
# extract and convert the returned value
result = response.AddResult
print result
my pycharm told me, that
Request format is not recognized because the URL unexpectedly ended on & quot; / & quot
What did i do wrong? Any help will be appreciated