<?xml version="1.0" encoding="utf-8"?>
<configuration>
	<configSections>
		<section name="PersonifySettings" type="TIMSS.ApplicationSettings.DotNetConfigurationSettingsProxy.ApplicationSettingsReader, TIMSS.CommunicationLayer" />
	</configSections>
	<appSettings>
		<!-- Diagnostics Configuration -->
		<add key="Diagnostics.Enabled" value="True" />
		<add key="Diagnostics.MailServer" value="[MAIL_DIAGNOSTICS_SMTPSERVER]" />
		<add key="Diagnostics.MailFrom" value="[MAIL_DIAGNOSTICS_FROM]" />
		<add key="Diagnostics.MailTo" value="[MAIL_DIAGNOSTICS_TO]" />
		<add key="Diagnostics.MailCC" value="[MAIL_DIAGNOSTICS_CC]" />
		<add key="Diagnostics.LogToEventLog" value="True" />
		<add key="Diagnostics.Path" value="" />
		<add key="Diagnostics.Categories" value="" />
		<add key="Diagnostics.DefaultVerbosityLevel" value="Normal" />
		<add key="Diagnostics.LogToFile" value="False" />
		<add key="Diagnostics.LogToEmail" value="False" />

		<!-- What to run once always-delivered files are downloaded. -->
		<add key="AutoUpdater.ApplicationToExecute" value="TIMSS.exe" />
		<add key="AutoUpdater.CommandLineParameters" value="" />

		<add key="ProductBrandingEnabled" value="True" />
		<add key="ProductBrandingURL" value="" />
		<add key="ProductBrandingDisplayTime" value="3" />
		<add key="SQLConnectionTimeOut.Default" value="30"/>
		<add key="SQLConnectionTimeOut.StoredProcedure" value="300"/>
		<add key="SQLConnectionTimeOut.usp_PostAccountingBatch" value="600"/>
		<add key="SQLConnectionTimeOut.usp_ImportSecuritySetup" value="600"/>
		<!-- 
				By default the application will be downloaded to
				Documents And Settings\<User ID>\Application Data\TMA Resources\Personify\Version Number
							
				To change this to an alternate location, provide a valid path in the InstallPathRoot key below.
				If the path does not exist it will be created the 1st time a download occurs.
		-->
		<add key="InstallPathRoot" value="" />
	</appSettings>
	<PersonifySettings>
		<ExecutionEnvironment>
			<!-- The basic resource packing strategy. -->
			<SetupStrategy Path="TIMSS.Shared.dll" Name="TIMSS.Server.ResourceStorage.FileSystemStorage.BasicResourcePackingStrategySetupStrategy" />

			<!-- Personify Over The Wire Dynamic Encryption & Compression -->
			<SetupStrategy Path="TIMSS.CommunicationLayer.dll" Name="TIMSS.Transport.Tcp.PersonifyRemotingChannelSetupStrategy">
				<name>Primary TCP channel</name>
				<!--The protocol specified here MUST match the protocol used in the APPServer URI. Valid protocols are tcp or http -->
				<protocol>tcp</protocol>
				<!--Valid formatters are BINARY or SOAP. This value must match the setting defined on the Personify Application Server-->
				<formatter>BINARY</formatter>
				<Encrypted>True</Encrypted>
				<Compressed>True</Compressed>
				<port>0</port>
				<suppressChannelData>false</suppressChannelData>
				<timeout>1200000</timeout>
			</SetupStrategy>



		</ExecutionEnvironment>
	</PersonifySettings>
</configuration>