Hello,
How can I send a request via a SOCKS5 proxy in IRIS, using, for example, EnsLib.REST.Operation?
Background
I need to access APIs inside my corporate network, to which I don't have direct access from my home office. I've set up a SOCKS5 proxy via SSH on my host machine like this:
ssh -D 9999 server.corporate.com
I can then make requests with curl to the APIs I need:
curl -x socks5h://localhost:9999 https://api.corporate.com/api/some/endpoint
And I receive a response. Simple!
Also, inside the containerized IRIS, I can execute the request: