Article Number | 000032976 |
Applies To | RSA Product Set: ECAT RSA Product/Service Type: ECAT RSA Version/Condition: 4.1.x, 4.2.x, 4.3.x, 4.4.x |
Issue | How to configure proxy access to the ECAT API server. |
Resolution | - Open ApiServer.exe.config located in your ECAT\Server folder.
 - Insert the following lines under <configuration> after the <configSections> node
style="margin-left: 40px;"> <system.net> <defaultProxy> <proxy usesystemdefault="False" proxyaddress="http://{ip address of proxy server}:{proxy port}" bypassonlocal="True" /> </defaultProxy> </system.net>
Example: <?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <!-- Level 1 --> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"></section> <section name="MachineAlertFields" type="System.Configuration.NameValueSectionHandler"></section> <section name="ModuleAlertFields" type="System.Configuration.NameValueSectionHandler"></section> <section name="IPAlertFields" type="System.Configuration.NameValueSectionHandler"></section> <section name="EventAlertFields" type="System.Configuration.NameValueSectionHandler"></section> <!-- Level 2 --> </configSections> <system.net> <defaultProxy> <proxy usesystemdefault="False" proxyaddress="http://{ipaddres of proxy server}:{port number}" bypassonlocal="True" /> </defaultProxy> </system.net> <appSettings> [...] </appSettings> [...] [...] </configuration>
- Restart the ECAT API Server service

|