When trying to Destroy Issued Copies/Transmittals to Persons that have a high number of them (in the thousands) the Destroy Copies link yields an error. The Destroy Copies works OK with Persons with low number of Copies/transmittals.
Default values for Content Length and Request Length are exceeded and you get the following error message:
To increase default values the following parameters need to be stated in web. config file for the eB Web deployed site.
1. In the system.web section of the web.config include the following parameter in RED:
<system.web> <httpRuntime maxRequestLength="1048576" executionTimeout="43200" />
2. In the System.WebServer section insert the following section:
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
Login to a new session of eB and test.
Bentley's Technical Support Group requests that you please confine any comments you have on this Wiki entry to this "Comments or Corrections?" section. THANK YOU!