Skip to content

Instantly share code, notes, and snippets.

@aalinat
Created August 10, 2014 23:14
Show Gist options
  • Save aalinat/fdab61e5e3ab37b4013c to your computer and use it in GitHub Desktop.
Save aalinat/fdab61e5e3ab37b4013c to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="TESTRestFulWCF.RestfulAspNetAjaxBehavior">
<enableWebScript />
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
<services>
<service name="TESTRestFulWCF.Restful">
<endpoint address="" behaviorConfiguration="TESTRestFulWCF.RestfulAspNetAjaxBehavior"
binding="webHttpBinding" contract="TESTRestFulWCF.Restful" />
</service>
</services>
</system.serviceModel>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment