Skip to main content
Announcements
NEW Customer Portal: Initial launch will improve how you submit Support Cases. FIND OUT MORE

Proxy settings tips for the Qlik GeoAnalytics Connector

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Patric_Nordstrom
Employee
Employee

Proxy settings tips for the Qlik GeoAnalytics Connector

Last Update:

Apr 2, 2021 4:17:53 AM

Updated By:

Patric_Nordstrom

Created date:

Jan 10, 2018 8:17:15 AM

The GeoAnalytics connector accesses internet like all connectors through the service user that runs the Qlik Sense or QlikView server. This might complicate things for companies runs a web proxy which requires user authentication.

Note, log on to windows as the service user, that will create a profile used by the web proxy.

To overcome this the connector can be supplied with proxy settings. The connector is a .Net program so the settings are inherited for the .Net framework. Depending on the proxy the following the settings may work. The settings are to be inserted in the settings file at C:\Program Files\Common Files\Qlik\Custom Data\QvIdevioConnector\IdevioGeoAnalyticsConnector.exe.config path may vary due to how the installation was done (default folders). The settings are to be inserted in the end, in the <configuration> tag.

Ex 1: Tells the connector to use default credentials:

<system.net>

   <defaultProxy useDefaultCredentials="true" />

</system.net>

Ex 2: Add server to bypasslist (string is regexp):

<system.net>

<defaultProxy useDefaultCredentials="true" enabled="true" >

    <bypasslist> 

         <add address="https:\/\/ga\.qlikcloud\.com" /> 

    </bypasslist> 

</defaultProxy>

</system.net>

Ex 3: To specify the proxy explicitly:

  <system.net>

    <defaultProxy useDefaultCredentials="true" enabled="true">

      <proxy usesystemdefault="False" autoDetect="False" proxyaddress="http://proxy:8080" />

    </defaultProxy>

  </system.net>

For more information about proxy settings for .Net:

<defaultProxy> Element (Network Settings) | Microsoft Docs

Tags (2)
Labels (2)
Comments
jsenabre
Contributor
Contributor

Good job

0 Likes
nasarkhann
Contributor III
Contributor III

Hi Patrick,


The proxy mentioned in this article works for Open redhat + GA Sep 2019 version when we upgrade to Java latest version + latest GA Nov 2021, the same proxy doesn't work.


Article: https://community.qlik.com/t5/Qlik-Sense-Documents/Proxy-settings-tips-for-the-Qlik-GeoAnalytics-Con...

Proxy settings used in our environment:


<system.net >
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy
usesystemdefault="false"
autoDetect="false"
proxyaddress="OUR PROXY SERVER:8080" />
<!-- the url should be defined based on the setting of the proxy in your environment -->
</defaultProxy>
</system.net >

 

Could you please kindly advise if we can make any modification in the proxy setting?

0 Likes
Version history
Last update:
‎2021-04-02 04:17 AM
Updated by: