Clarity Task Error - Maximum Request Length Exceeded
Update: 10/1/2024 with preferred method
Error
That error means that the file is too large to send back to the host via http so the config file needs to be modified to allow for larger file sizes.
Task Error
There was an exception running the extensions specified in the config file. ---> Maximum request length exceeded.
If you exceed the default maximum file size which is 400000 you will need to fix a config file to accommodate processing larger file sizes, or enable uploading in chunks (preferred method).
Resolution Options
Preferred Method
On the Task Server
Enable Upload in Chunks
Make sure the Clarity Task Server is fully updated
Log onto the Task Server as the designated Clarity Account.
- Exit the Clarity Task Tray by right clicking on the Clarity icon in the Windows Task Tray and Exit
- Through File Explorer Browse to C:\ProgramData\IMAGINiT Technologies\Clarity Task Server 202#\ClarityTaskService.config
- Right click on ClarityTaskService.config and copy, then paste into the same folder. Rename the extension to .ORIG as shown below
- Edit the ClarityTaskService.config in Notepad
- Toward the bottom of the file, locate the line:
<add key="UploadFilesInChunks" value="False" /> - Change its value to “True”.
- Save the file
- If you get an error saving the file, save it to the desktop
- Make sure the save dialog shows All Files it is still seen in the screenshot and Append extension is not toggled, then save
- Move the file back into the original folder and overwrite
- Restart the Task Server Tray from the desktop icon Clarity Task Tray for Revit
- From the desktop icon "Launch Task Server" for any version of Revit and make sure it picks up tasks
Alternate Methods on Host
You can modify a config file to allow for larger file sizes.
To change the Config File
1. On the Host Server, browse to the following folder: C:\inetpub\wwwroot\CentralWebServices
2. Make a copy of the Web.config file and rename it to Web.orig in case you ever need to revert back to the original file.
3. Modify the: Web.config
4. Change the highlighted value below between the "400000". Please make sure that you make the max request length high enough...perhaps go up to 800000
Example
<add key="AllowOverrideTaskParams" value="No" />
</appSettings>
<!-- specific config for allowing large uploads to the Task Webservice -->
<system.web>
<!-- max Request Length, in KB -->
<httpRuntime maxRequestLength="800000" executionTimeout="600" />
</system.web>
<!--
Screenshot of file
5. Save the file, if you get an error about saving to the original folder, do a save as to the desktop. Make sure to match the settings below before saving.
We do not want anything appended to the end, so make sure that is not checked.
6. Drag the file from the desktop back into the original folder and overwrite.