cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

This article describes how to configure the FlexNet Manager Suite (On-Premises Edition) ServiceNow export utility process to connect to ServiceNow via a web proxy.

Proxy configuration settings can be placed the <proxy> element of the XML-format application config file named fnmp_servicenow_export.exe.config in the same directory is the fnmp_servicenow_export.exe file (which is installation-directory\DotNet\bin\ServiceNowExport by default)

Here is an example of a configuration that uses the default proxy configuration for the user account that runs the export process:

 

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.net>
        <defaultProxy>
            <proxy usesystemdefault="true" bypassonlocal="true"/>
        </defaultProxy>
    </system.net>
</configuration>

 

Alternatively, a specific named proxy server (URL) can be identified as follows:

 

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.net>
        <defaultProxy>
            <proxy proxyaddress="http://proxyserver:80" bypassonlocal="true"/>
        </defaultProxy>
    </system.net>
</configuration>

 

See the following page for more information about the fnmp_servicenow_export.exe.config file: Configuring the Utility for Export from FlexNet Manager Suite (2020 R2 release).

See the following Microsoft documentation pages for more information about proxy configuration that can be specified in the fnmp_servicenow_export.exe.config file:

Was this article helpful? Yes No
No ratings
Comments
anttimustonen
By
Level 6

Hi,

It seems FNMS does not support HTTPS proxies for ServiceNow export. I get error in the servicenow export logs:

"ServicePointManager does not support proxies with the https scheme"

 

Is this the case? I'm running FNMS 2019 R1.

Version history
Last update:
‎Jun 03, 2021 08:50 PM
Updated by: