The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.
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:
on Aug 26, 2020 11:04 AM - edited on Jun 03, 2021 08:50 PM by ChrisG
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.