KB Article #65217
How to specify the maximum allowed size of the upload from Web Trader
Problem
-- How to specify the maximum allowed size of the upload from Web Trader account
Resolution
-- 1. Set the size for WebTrader by going to (install folder)\Interchange\webapps\ui\WEB-INF and open web.xml.
2. Look for lines like this:
<!--
Specify maximum allowed size of the upload. Defaults to 10 Mb.
-->
<init-param>
<param-name>upload-max-size</param-name>
<param-value>10485760</param-value>
</init-param>
Change the param-value (in bytes) to what you need it to be.
The default has changed over the versions. With B2Bi 2.3.0 it is currently 50 MB. The maximum supported upload filesize for 2.3.0 and later currently is 2 GB (2147483648).
** Please note that the Interchange server must be restarted for the changed values to go into effect.