Excuse me, I have an endpoint which shows me certain web services, said endpoint is the following:
wsdl=" link "
The problem is that, at the moment of wanting to obtain the client to be able to obtain the web services, the zeep.Client () method initializes or default the port with a value of 80, contrary to the endpoint, which has a value of 8080.
According to the little I have researched, (which I do not know if it is the right thing to do), to specify the value of a specific port for an endpoint, you need to specify the following parameter when creating the SOAP client:
client = zeep.Client (wsdl = wsdl, port_name = 8080 , settings = settings)
Which, when executing the program, shows me the following message:
An exception has occurred: Port not found