<?xml version="1.0" encoding="UTF-8"?>

<configuration>
	<system.web>
		<compilation targetFramework="4.7.2" />
		<httpRuntime targetFramework="4.7.2" requestValidationMode="2.0" />
		<webServices>
			<protocols>
				<add name="HttpPost"/>
			</protocols>
		</webServices>
	</system.web>
	<system.webServer>
		<defaultDocument>
			<files>
				<add value="FieldBlade.asmx" />
			</files>
		</defaultDocument>
		<directoryBrowse enabled="false" />
        	<validation validateIntegratedModeConfiguration="false" />
	</system.webServer>
	<appSettings>
		<!--<add key="domain" value="CORP" />--> <!-- uncomment and set to your ActiveDirectory domain to enable network password authentication -->
		<!-- The next two settings control where attachments get stored. Even though these settings are specified here on the Internal server, -->
		<!-- they are from the perspective of the External server. -->
		<add key="webappfiledir" value="c:\inetpub\wwwroot\mpowered\download\" /> <!-- change to your External server's download directory for file writing --> 
		<add key="webapplinkdir" value="https://webserver.yourcity.ca/Mpowered/Download/" /> <!-- the same directory as above, but from the web server perspective -->
	</appSettings>
	<connectionStrings>
		<add name="MpoweredSQL" connectionString="Server=YOURHOST;Database=INSTANCE;User ID=MpoweredWeb;Password=*****" />
		<add name="MpoweredORA" connectionString="Data Source=YOURHOST:1521/INSTANCE;User ID=MpoweredWeb;Password=*****;Pooling=false"/>
	</connectionStrings>
</configuration>
