Created
August 10, 2014 23:14
-
-
Save aalinat/5a7787f7be91c79f2a42 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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