Therefore™ MFP Scan

To use the Therefore™ MFP Scan with a tenant it is necessary to edit the file "TheMFPManager.exe.config" found in the Therefore™ installation folder on the server e.g. C:\Program Files\Therefore\. The highlighted lines below simply need to be deleted and then the file re-saved. If a secure connection is required, then the UseHTTPS value must be set to 1 and CertStore, CertLoc and CertPrint must be configured as described in the Solution Designer manual under the topic Therefore MFP Application.

Copy
<?xml version="1.0"?>
<configuration>
<!-- *** Uncomment <appSettings> in a multi-tenant environment ***
 
<appSettings>
<add key="UseStandardXMLPort" value="1"/>
<add key="FilePort" value="8373"/>
<add key="UseHTTPS" value="0"/>
<add key="CertStore" value="My"/>
<add key="CertLoc" value="LocalMachine"/>
<add key="CertPrint" value="Enter Certificate Thumbprint"/>
<add key="DefaultDomain" value="domain"/>
</appSettings>
-->
<!--optional key: <add key="XMLPort" value="8372"/>-->
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
</configuration>
  • If UseStandardXMLPort value is set to 1, then 80 (http) or 443 (https) XML port will be used.

  • XMLPort is an optional key that can be used for setting an additional port for XML communication.