This section describes how to record the interaction between an existing SOAP client and the web services server.
8090
by default. This setting can be changed in the preferences.Please refer to the documentation accompanying your web services Framework for instructions on how to change the proxy settings. As a guide:
http.proxyHost
and http.proxyPort
system properties.For example, place the following lines in your code:
System.setProperty("http.proxyHost", "localhost");
System.setProperty("http.proxyPort", "8090");
or modify the command line as follows:
java -Dhttp.proxyHost=localhost -Dhttp.proxyPort=8090 ...
<configuration>
<system.net>
<defaultProxy>
<proxy
usesystemdefault = "false"
proxyaddress="http://localhost:8090"
bypassonlocal="true"
/>
</defaultProxy>
</system.net>
</configuration>