<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="WebApiAspNetAjaxBehavior">
<enableWebScript/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<services>
<service name="WebApi">
<endpoint address="" behaviorConfiguration="WebApiAspNetAjaxBehavior"
binding="webHttpBinding" contract="WebApi"/>
</service>
</services>
</system.serviceModel>
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="WebApiAspNetAjaxBehavior">
<enableWebScript/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
<services>
<service name="WebApi">
<endpoint address="" behaviorConfiguration="WebApiAspNetAjaxBehavior"
binding="webHttpBinding" contract="WebApi"
bindingConfiguration="NTLMBinding"
/>
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="NTLMBinding">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>