Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
000017678
Attachment cannot be uploaded when the file size is more than 2.99MB by using RESTFUL API. You will receive an Internal Server error 500.
However, the same attachment can be uploaded through the attachment fields in the UI.
The web.config file in the API subfolder (Archer website's virtual directory /Archer/api) has the default value in maxRequestLength and maxAllowedContentLength.
Add or modify the maxRequestLength and maxAllowedContentLength values in the web.config located in the Archer website's virtual directory (/Archer/API).
<httpruntime maxRequestLength="400000" executionTimeout="3600"/>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="419430400" />
</requestFiltering>
</security>