Skip to content

Instantly share code, notes, and snippets.

@jalanstrom
Created January 31, 2018 16:02
Show Gist options
  • Save jalanstrom/5089d894e6a02c9a0f090dbc5dac5592 to your computer and use it in GitHub Desktop.
Save jalanstrom/5089d894e6a02c9a0f090dbc5dac5592 to your computer and use it in GitHub Desktop.
<system.web>
<!-- To control file size upload limit, remove the comment tags around the section below and set the maxRequestLength value in KB. For more information contact HelpSystems support. -->
<!-- <httpRuntime maxRequestLength=""/> -->
<!-- Use the IIS UI to set this value to control session timeout or alternatively uncomment the sessionTimeout section below. -->
<!-- <sessionState timeout="20"/> -->
<webServices>
<soapServerProtocolFactory type="Microsoft.Web.Services3.WseProtocolFactory, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<soapExtensionImporterTypes>
<add type="Microsoft.Web.Services3.Description.WseExtensionImporter, Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</soapExtensionImporterTypes>
</webServices>
<compilation debug="false" strict="false" explicit="true" targetFramework="4.5">
<assemblies>
<add assembly="Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
</compilation>
<customErrors mode="On" defaultRedirect="error.aspx" />
<pages enableViewStateMac="true" viewStateEncryptionMode="Always" controlRenderingCompatibilityVersion="4.0" clientIDMode="Static" />
<trace enabled="false" mostRecent="true" requestLimit="50" />
<globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8" responseHeaderEncoding="utf-8" uiCulture="auto" culture="auto" />
<httpRuntime maxRequestLength="20000" />
</system.web>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment