Skip to content

Instantly share code, notes, and snippets.

@Vaccano
Created November 2, 2012 22:49
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 Vaccano/4004836 to your computer and use it in GitHub Desktop.
Save Vaccano/4004836 to your computer and use it in GitHub Desktop.
OrignalWeb.Config
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding maxBufferSize="5242880"
maxBufferPoolSize="5242880"
maxReceivedMessageSize="5242880">
<readerQuotas maxArrayLength="16384"
maxStringContentLength="5242880" />
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment