We have a client application that uses proxy for external Webservice calls. We have virtualized this service and want to use the same configuration with Proxy setting without changing our internal code.
How do we exclude VSE Server from going through a Proxy?
Release : 10.4
Component : CA Service Virtualization
Add VSE host (rxxxx00a0103.ABC.com) to the nonProxy host list in the Client Application code.
System.setProperty("http.proxyHost", "http://proxy.myproxy.com");
System.setProperty("http.proxyPort", "80");
System.setProperty("http.nonProxyHosts", "rxxxx00a0103.ABC.com|Ipaddress");