Intersoft WebTextEditor Documentation
How-to: Configure WebFileUploader for IIS 7 application
See Also Send Feedback
Intersoft WebTextEditor > WebFileUploader > Features > IIS 6 and IIS 7 Integrated mode support > How-to: Configure WebFileUploader for IIS 7 application

Glossary Item Box

Some configuration is needed in the web.config to run WebFileUploader in IIS7.

=In this topic, you will learn how to configure web.config.

To configure WebFileUploader for IIS 7 application

  1. Follow the configuration required to run WebFileUploader in IIS6.
  2. Set maxAllowedContentLength to a higher value, which is measured in bytes, to 100MB in web.config. Here is the snippet:
    <system.webServer>
        <security>
          <requestFiltering>
            <requestLimits maxAllowedContentLength="104857600" />    </requestFiltering>
        </security>
    </system.webServer>
    
  3. Unlock the mode override in applicationHost.config. Open IIS 7 application configuration file, default location in C:\windows\system32\inetsrv\config, and change the overrideModeDefault to Allow. Here is the snippet:
    <section name="requestFiltering" overrideModeDefault="Allow" />
    
  4. Add WebFileUploader handler to <handlers> section under <system.webServer>. Here is the snippet:
    <add name="WebFileUploaderHttpHandler" verb="GET" path="WebFileUploaderHttpHandler.axd" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" preCondition="integratedMode" />
    
  5. Add WebFileUploader module to <modules> section under <system.webServer>. Here is the snippet:
    <add name="WebFileUploaderHttpModule" preCondition="managedHandler" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor" />
    

See Also

©2013. All Rights Reserved.