I'm trying to create a method to use suds.client from suds-py3 with the next form:
from suds.client import Client
def soap_request(url, parameter, request_dictionary, method)
client = Client(url)
parameter_object = client.factory.create(str(parameter))
for var, value in request_dictionary.items():
parameter_object[str(var)] = value
request_response = client.service.method(parameter_object)
return = request_response
When i use:
client.service.<methods_name>(parameter_object)
I get the response correctly. But when i use the previous code, i get this error message: "suds.MethodNotFound: Method not found"