Skip to content

Instantly share code, notes, and snippets.

@yetanotherchris
Created May 6, 2015 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yetanotherchris/0ae2c3c88dbad0ae9393 to your computer and use it in GitHub Desktop.
Save yetanotherchris/0ae2c3c88dbad0ae9393 to your computer and use it in GitHub Desktop.
Slightly simpler WCF configuration web.config
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="MyNameSpace.ServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment