Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<behaviors>
	<serviceBehaviors>
	<behavior name="BasicAuthServiceBehavior">
		<serviceMetadata httpGetEnabled="false" />
		<serviceDebug includeExceptionDetailInFaults="true" />
		<serviceCredentials>
			<userNameAuthentication userNamePasswordValidationMode="Custom" 
			customUserNamePasswordValidatorType="Kodi.Kodiak.Security.BasicUsernamePasswordValidator, Kodi.Kodiak.Security" />
			<serviceCertificate storeLocation="LocalMachine" 
			   storeName="My" 
			   x509FindType="FindByThumbprint" 
			   findValue="ea90bdd15d16be21bd17b547da5690e1756e6a3b"/>				
		</serviceCredentials>
		<serviceThrottling maxConcurrentCalls="200" 
		     maxConcurrentSessions="200" maxConcurrentInstances="200" />
		<dataContractSerializer maxItemsInObjectGraph="2147483646" />
	</behavior>
	...

...