Previous Topic

Next Topic

Book Contents

Example—Using a bypass list

The following proxy server configuration sends all outgoing traffic from the InForm Publisher application through port 9044 on 127.0.0.1, unless the endpoint address matches a regular expression specified in the bypass list.

If the endpoint address includes .oracle.com, it bypasses the proxy.

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<system.net>

<defaultProxy>

<proxy proxyaddress="http://127.0.0.1:9044" />

<bypasslist>

<add address="[a-z]+\.oracle\.com" />

</bypasslist>

</defaultProxy>

</system.net>

</configuration>

Send Feedback