Installation Guides > Installing Server > Installing UNICOM Intelligence Interviewer - Server > Post-installation tasks for UNICOM Intelligence Interviewer - Server > Optional tasks > Modifying the default Web service settings for UNICOM Intelligence Remote Administration
 
Modifying the default Web service settings for UNICOM Intelligence Remote Administration
If you have installed UNICOM Intelligence Remote Administration, you can change the default Web service settings that control synchronization between remote interviewers and the UNICOM Intelligence Remote Administration. You can change the Web service settings by editing the web.config file. By default, theweb.config file is in the following folder:
C:\InetPub\wwwroot\SPSSMR\SyncWebServiceV2\web.config
Properties
DPMServerName
Name of the DPM server computer. If the server is on a remote computer, change this value to that computer's name.
Default value: localhost
DPMCachedDataRefreshInterval
The cache data refresh interval for the DPM server. The default value is 300 minutes.
<add key="DPMCachedDataRefreshInterval" value="300" />
FailedUploadPackagesPath
The path where failed uploaded packages are saved. When the setting is not configured, failed uploads are deleted. For example:
<add key="FailedUploadPackagesPath" value="C:\Inetpub\wwwroot\SPSSMR\
SyncWebServiceV2\inbox\FailedUploadPackages"/>
InvalidCacheFilesPath
The path where invalid cache files are saved. When the setting is not configured, invalid cache files are deleted. For example:
<add key="InvalidCacheFilesPath" value="C:\Inetpub\wwwroot\SPSSMR\
SyncWebServiceV2\inbox\InvalidCacheFiles"/>
MaxPacketSize
The maximum packet size. The default value is 1048576 bytes (1 MB).
<add key="MaxPacketSize" value="1048576" />
NoCompressionExtensionList
The filename extensions whose corresponding files should not be compressed.
<add key="NoCompressionExtensionList"
value="*.jpg;*.jpeg;*.png;*.gif;*.avi;*.mpg;*.mp3;*.mp4;*.mov;" />
PrincipalSyncWebService
Indicates that the SyncWebServiceV2 instance is a proxy for the specified service. By default, this setting is commented out. To set the property, remove the comment markers and replace the default value with the actual path to the principal service. If this line is uncommented, all other Web service settings specified in the currentweb.config file are ignored.
Default value:
http://your-principal-server/SPSSMR/SyncWebServiceV2/Service.svc
ProcessedPackagesPath
This setting saves the processed package to the defined path. When the setting is not configured, packages are deleted after they are processed. For example:
<add key="ProcessedPackagesPath" value="C:\Inetpub\wwwroot\SPSSMR\
SyncWebServiceV2\inbox\ProcessedPackages"/>
SyncSessionTimeout
The synchronization session time-out value (in minutes). The minimum value is 1 minute; the maximum value is 1440 minutes (one day); the default value is 60 minutes. For example:
<add key="SyncSessionTimeout" value="60"/>
Reporting time-out exception messages
The web.config file (C:\InetPub\wwwroot\SPSSMR\SyncWebServiceV2\web.config) provides options for reporting time-out exception messages to customers. The following settings control the various time-out values:
<bindings>
<basicHttpBinding>
<binding name="SyncServiceBinding" closeTimeout="00:03:00" openTimeout="00:03:00" receiveTimeout="00:50:00"
sendTimeout="00:50:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Mtom"
textEncoding="utf-8" transferMode="Streamed">
<readerQuotas maxDepth="128" maxStringContentLength="2147483647" maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
</binding>
<binding name="SSLSyncServiceBinding" maxBufferSize="2097152" maxBufferPoolSize="2097152" maxReceivedMessageSize=
"2147483647" messageEncoding="Mtom" textEncoding="utf-8" transferMode="Streamed">
<readerQuotas maxDepth="128" maxStringContentLength="2097152" maxArrayLength="2097152" maxBytesPerRead="2097152"
maxNameTableCharCount="2097152"/>
<security mode="Transport"/>
</binding>
</basicHttpBinding>
</bindings>
See
Optional tasks