Friday 17 September 2010

Stadium3 Release : 3.1.1646.3518

Build 3.1.1646.3518 is available for download on Storytracker.
New features include:
  • Start page can be configured for a role
  • Accessrights now allows  underscore  for name property
  • Decision action now allows conditions with AND and OR
  • Uploading and editing of application has been split as seperate tasks on website
  • GridIterator action now allows adding of 'SetVariable' action as a child action
  • Filter has new CriteriaValueRequired property which forces user to specify a value when filtering
  • Filter has new apply button click event

Wednesday 8 September 2010

Uploading large sap files on IIS7 server

When uploading large sap files on IIS7,  it is likely you will see below error:
http://stadium3.files.wordpress.com/2010/09/iis7-error2.jpg

In order to fix this error,  follow below steps:
  1. Modify the IIS 7 applicationHost.config file to enable you to configure request filtering at the application level instead of the machine level. To do this, you should
    open the %windir%\System32\inetsrv\config\applicationHost.config file. I
    n a text editor and change the following line:
    <section name="requestFiltering" overrideModeDefault="Deny" />
    to
    <section name="requestFiltering" overrideModeDefault="Allow" />


  2. The web.config file needs to be modified as specified below:
<Configuation>
<System.web>

<httpRuntime maxRequestLength="2097151"/>
</System.web>
<System.webServer>
<security>
<requestFiltering>

<requestLimits maxAllowedContentLength="4294967295"  /></requestFiltering>
</security>
  • maxRequestLength - Indicates the maximum file upload size supported by ASP.NET. This limit can be used to prevent denial of service attacks caused by users posting large files to the server. The size specified is in kilobytes. The default is 4096 KB (4 MB).
  • requestLimits maxAllowedContentLength - Specifies the maximum length of content in a request, in bytes. The default value is 30000000.
Further information can be found at below links: