Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2023.2

...

-DapiPortSystem property that specifies the API port number. Default is 40090.
-DwebsocketPortSystem property that specifies the websocket port for streaming traffic events from the Chrome extension. Defaults to one port higher than API port.
-DproxyPortStart

System property that specifies the starting port number when scanning for an open port. Default is 40443.

-DproxyPortRange

System property that limits the number of ports scanned after the starting port number (value specified with the proxyPortStart argument). Set to 0 to prevent scanning.

-DproxyAutoConfigURL

System property that specifies the URL of a proxy auto-configuration (PAC) file, for example:

-DproxyAutoConfigURL=<protocol>://<host>:<port>  

-DuseSystemProxy

Enables/disables use of the network-level proxy. Default is true.

-DdebugEnables/disables system debugging information. Default is false.
-DenableHTTPCacheControlEnables/disables HTTP cache headers to be passed through the proxy. Default is false. The default mode will actively remove HTTP cache headers.

...

Specify the configuration options on startup from the command line. The following startup command sets the API port to 1009010080, scans for a range of port numbers, and enables debugging:

Code Block
%INSTALLDIR%/jre%JAVA_HOME%/bin/java -DapiPort=10080 -DproxyPortStart=20443 -DproxyPortRange=10 -Ddebug=true -jar com.parasoft.traffic.proxy.jar

...