Is it possible to configure Windows Servers that reside on the same domain such that when a web service call is made from a web app using an IP address, the request does not go via a proxy server?
The web service is running on one of the servers on the domain.
I want to configure IP based security on the server that hosts the web service such that it only allows connections from specific servers. Currently all requests go via the proxy server rendering IPSec problematic.
Within the browser I can specify that requests following a specific pattern should bypass the proxy server. It’s essentially this behaviour I want to replicate with the servers.
Thanks
Proxycfg looked promising, however the following code was what I needed to do it programmatically:-
this allowed me to specify the addresses that should bypass the specified proxy and it works great now
Thanks for your help