Skip to content

Proxy Server Settings

The following article shows how to configure a proxy server in Board Connector.
Due to corporate network regulations there can be the requirement that all web traffic needs to go through a web proxy.

System-Wide Configuration in the Windows Settings

Open the settings Network and Internet in your Windows start menu and set the respective proxy server settings.

XU-proxy-settings-01

Application Specific Configuration

Follow the Microsoft guidelines to configure the proxy server.

Open the installation directory of Board Connector, e.g., C:\Program Files\BOARDConnector. Modify the files Theobald.Bc.Web.Worker.exe.config and BCDesigner.exe.config . Enter the following section in both files:

Proxy Configuration
<system.net>
    <defaultProxy>
        <proxy  proxyaddress="http://[My_Proxyserver]:3128"
                bypassonlocal="True"
        />
    </defaultProxy>
</system.net>

Examples:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.net>
        <defaultProxy>
            <proxy proxyaddress="http://[My_Proxyserver]:3128" bypassonlocal="true" />
        </defaultProxy>
    </system.net>
    <startup>
        <!-- ... -->
    </startup>
    <runtime>
        <!-- ... -->
    </runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
        <!-- ... -->
    </configSections>
    <system.net>  
        <defaultProxy>  
            <proxy  proxyaddress="http://[My_Proxyserver]:3128"
                bypassonlocal="true"  
        />  
        </defaultProxy>  
    </system.net>


Last update: June 5, 2024