Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Typically, if you connect through a proxy server, you need to configure the connection by passing protocol-specific system properties to the JVM – JVM – using the -D command line option.

To work with Cwith C/C++test,  ensure ensure that the system properties for the HTTPS protocol (are configured. At a minimum, you must configure https.proxySet=true, https.proxyHost=[hostname], and https.proxyPort=[port number]. If your proxy server requires authentication, you can configure your credentials with the https.proxyUser and https.proxyPassword properties.

) are configured. Your command line may resemble the following:

Code Block
languagetext
java -Dhttps.proxySet=true -Dhttps.proxyHost=myserver.example.com -Dhttps.proxyPort=8080 -Dhttps.proxyUser=user1 -Dhttps.proxyPassword=MyPassword

In addition, you can configure the https.nonProxyHosts property to specify hosts where connection via proxy is not required.

(info) If you use C/C++test on desktop with Eclipse, the proxy settings are automatically detected and do not need to be configured in the command line.

(info) The proxy mode is not supported for Visual Studio.

...