<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article How to use a Web Proxy with GeoAnalytics Connector in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-a-Web-Proxy-with-GeoAnalytics-Connector/ta-p/1716882</link>
    <description>&lt;P&gt;If you are using a proxy in your client it may happen that the proxy requires authentication.&lt;BR /&gt;In such cases an error can occur when using the GeoAnalytics Connector&amp;nbsp;like the following:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;"Proxy Authentication Required to ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied. )&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Environment:&lt;/H3&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Qlik GeoAnalytics" id="qlikGeoAnalytics"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;Connector, all versions&lt;/P&gt;
&lt;H3 class="qlik-migrated-tkb-headings"&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3 class="qlik-migrated-tkb-headings"&gt;Resolution:&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are two ways to use a proxy:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; Also see&amp;nbsp;&lt;A style="background-color: #ffffff;" href="https://community.qlik.com/t5/Documents/Proxy-settings-tips-for-the-Qlik-GeoAnalytics-Connector/ta-p/1485869" target="_self"&gt;Proxy settings tips for the Qlik GeoAnalytics Connector&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;1. By adding &amp;lt;&lt;FONT face="courier new,courier"&gt;add key="geoAnalyticUseSystemProxy" value="true"/&amp;gt;&lt;/FONT&gt; to the &lt;FONT face="courier new,courier"&gt;appSettings&lt;/FONT&gt; tag in&amp;nbsp;&lt;FONT face="courier new,courier"&gt;C:\Program&amp;nbsp;&amp;nbsp;Files\Qlik\Custom Data\QvIdevioConnector\IdevioGeoAnalyticsCOnnector.exe.config&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;This will make the connector (both normal and plus version) use the default proxy as configured in Windows.&lt;/P&gt;
&lt;P&gt;2. By adding C# specific settings in the same file if you don't want to use the default proxy, or if it fails with the default proxy.&lt;/P&gt;
&lt;P&gt;Note that this does not work with the Plus version as it has a layer of Java code between which is not affected by this setting.&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&amp;lt;&lt;/I&gt;&lt;FONT face="courier new,courier"&gt;configuration&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .... other stuff ...&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;A href="http://system.net/" target="_blank" rel="noopener"&gt;system.net&lt;/A&gt;&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;defaultProxy useDefaultCredentials="true"&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;proxy proxyaddress="&lt;A href="http://localhost:8888/" target="_blank" rel="noopener"&gt;http://localhost:8888&lt;/A&gt;" bypassonlocal="true"&amp;nbsp; /&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;/defaultProxy&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/&lt;A href="http://system.net/" target="_blank" rel="noopener"&gt;system.net&lt;/A&gt;&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;lt;/configuration&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Link to more info from Microsoft about it:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/network/defaultproxy-element-network-settings" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/network/defaultproxy-element-network-settings&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Another option could look like this:&lt;/P&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;&amp;lt;system.net&amp;nbsp;&amp;gt; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;defaultProxy useDefaultCredentials="true" enabled="true"&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;proxy &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; usesystemdefault="false" &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; autoDetect="false"&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN&gt;proxyaddress="&lt;A href="http://your_proxy_name:port_number" target="_blank" rel="noopener"&gt;http://your_proxy_name:port_number&lt;/A&gt;"&amp;nbsp;&amp;nbsp; /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;!-- the url should be defined based on the setting of the proxy in your environment&amp;nbsp;--&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/defaultProxy&amp;gt; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/system.net&amp;nbsp;&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Related Content:&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Knowledge-Base/Proxy-settings-tips-for-the-Qlik-GeoAnalytics-Connector/ta-p/1712827" target="_self"&gt;Proxy settings tips for the Qlik GeoAnalytics Connector&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Wed, 07 Jul 2021 07:46:48 GMT</pubDate>
    <dc:creator>Sonja_Bauernfeind</dc:creator>
    <dc:date>2021-07-07T07:46:48Z</dc:date>
    <item>
      <title>How to use a Web Proxy with GeoAnalytics Connector</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-a-Web-Proxy-with-GeoAnalytics-Connector/ta-p/1716882</link>
      <description>&lt;P&gt;If you are using a proxy in your client it may happen that the proxy requires authentication.&lt;BR /&gt;In such cases an error can occur when using the GeoAnalytics Connector&amp;nbsp;like the following:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;"Proxy Authentication Required to ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied. )&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Environment:&lt;/H3&gt;
&lt;P&gt;&lt;LI-PRODUCT title="Qlik GeoAnalytics" id="qlikGeoAnalytics"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;Connector, all versions&lt;/P&gt;
&lt;H3 class="qlik-migrated-tkb-headings"&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3 class="qlik-migrated-tkb-headings"&gt;Resolution:&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are two ways to use a proxy:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; Also see&amp;nbsp;&lt;A style="background-color: #ffffff;" href="https://community.qlik.com/t5/Documents/Proxy-settings-tips-for-the-Qlik-GeoAnalytics-Connector/ta-p/1485869" target="_self"&gt;Proxy settings tips for the Qlik GeoAnalytics Connector&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;1. By adding &amp;lt;&lt;FONT face="courier new,courier"&gt;add key="geoAnalyticUseSystemProxy" value="true"/&amp;gt;&lt;/FONT&gt; to the &lt;FONT face="courier new,courier"&gt;appSettings&lt;/FONT&gt; tag in&amp;nbsp;&lt;FONT face="courier new,courier"&gt;C:\Program&amp;nbsp;&amp;nbsp;Files\Qlik\Custom Data\QvIdevioConnector\IdevioGeoAnalyticsCOnnector.exe.config&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;This will make the connector (both normal and plus version) use the default proxy as configured in Windows.&lt;/P&gt;
&lt;P&gt;2. By adding C# specific settings in the same file if you don't want to use the default proxy, or if it fails with the default proxy.&lt;/P&gt;
&lt;P&gt;Note that this does not work with the Plus version as it has a layer of Java code between which is not affected by this setting.&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&amp;lt;&lt;/I&gt;&lt;FONT face="courier new,courier"&gt;configuration&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .... other stuff ...&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;A href="http://system.net/" target="_blank" rel="noopener"&gt;system.net&lt;/A&gt;&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;defaultProxy useDefaultCredentials="true"&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;proxy proxyaddress="&lt;A href="http://localhost:8888/" target="_blank" rel="noopener"&gt;http://localhost:8888&lt;/A&gt;" bypassonlocal="true"&amp;nbsp; /&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;/defaultProxy&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/&lt;A href="http://system.net/" target="_blank" rel="noopener"&gt;system.net&lt;/A&gt;&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;lt;/configuration&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Link to more info from Microsoft about it:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/network/defaultproxy-element-network-settings" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/network/defaultproxy-element-network-settings&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Another option could look like this:&lt;/P&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT face="courier new,courier"&gt;&amp;lt;system.net&amp;nbsp;&amp;gt; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;defaultProxy useDefaultCredentials="true" enabled="true"&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;proxy &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; usesystemdefault="false" &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; autoDetect="false"&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN&gt;proxyaddress="&lt;A href="http://your_proxy_name:port_number" target="_blank" rel="noopener"&gt;http://your_proxy_name:port_number&lt;/A&gt;"&amp;nbsp;&amp;nbsp; /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;lt;!-- the url should be defined based on the setting of the proxy in your environment&amp;nbsp;--&amp;gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;lt;/defaultProxy&amp;gt; &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/system.net&amp;nbsp;&amp;gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Related Content:&lt;/H3&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/Knowledge-Base/Proxy-settings-tips-for-the-Qlik-GeoAnalytics-Connector/ta-p/1712827" target="_self"&gt;Proxy settings tips for the Qlik GeoAnalytics Connector&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 07 Jul 2021 07:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/How-to-use-a-Web-Proxy-with-GeoAnalytics-Connector/ta-p/1716882</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2021-07-07T07:46:48Z</dc:date>
    </item>
  </channel>
</rss>

