The traditional approaches to find what is causing the SPS to file to not upload may not help after reviewing SPS logs and traces and trying to tune per CA's general guidelines.
In the situation (as it was discovered later in this particular case) where two machines (e.g. Windows-based) in the same sub-net differ in behavior for the large upload of files across SPS to the back end; e,g, one can upload large files, the other cannot and fails with an error (as above), the web.config in the may be the difference. The problem may be unrelated to CA SSO components as in this instance.
Depending on which version of Windows, there might be some difference in the web.config construct. But, please search the Internet accordingly. Or, take assistance from Microsoft Support.
For example, in IIS/ASP.NET environment:
To increase the upload limit, one can add appropriate section to your web.config file and specify the limit. CA recommends consulting Microsoft Support when taking such action.
In the case of IIS 7.x and later, both Integrated and Classic mode:
1 2 3 4 5 6 7 | < system.webServer > < security > < requestFiltering > < requestLimits maxAllowedContentLength = "<set_a_large_file_size_here" /> </ requestFiltering > </ security > </ system.webServer > |
According to MSDN, maxAllowedContentLength
has type uint
, its maximum value is 4,294,967,295 bytes = 3,99 GB.
maxAllowedContentLength
|
Optional uint attribute.
Specifies the maximum length of content in a request, in bytes.
The default value is 30000000.
|