I am creating a script to access the HTTPS / TLS TCP site, which requires an X.509 certificate, which I have as a .pfx file.
I use SOAPpy 0.12.5 and Python 2.7 and started with the code as below,
import SOAPpy
url = "192.168.0.1:5001"
server = SOAPpy.SOAPProxy(url)
server.callSoapRPC(xxxx)
If I try to run this, it will not execute the following message
socket.error: [Errno 10061] No connection could be made because the target machine actively refused it
Any suggestions on how to associate a .pfx certificate with SOAPproxy?
thank
source
share