Search This Blog

Thursday, September 29, 2011

The request filtering module is configured to deny a request that exceeds the request content length

HTTP Error 400 Bad request

Or

  Unable to upload large/bigger files on to web server (IIS)

Include the following setting in your Web.config file.
<system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="1000000000" />
            </requestFiltering>
        </security>
    </system.webServer>

It allows upto 1000MB file to be uploaded.
The same can be achieved by the following command too.



%windir%\system32\inetsrv\appcmd set config "Default Web Site/<your app>" -section:requestFiltering -requestLimits.maxAllowedContentLength:1000000000











Tuesday, September 13, 2011

BI Applications: Trees in Peoplesoft Simplified

BI Applications: Trees in Peoplesoft Simplified: Trees in PSFT can be broadly classified into Summer Trees and Winter Trees. I will take the same example of Department for both the cases so...