If it is a standard FME Server installation (with the built-in Tomcat HTTP server and the default FME Server configuration), this should not happen. My workspaces were over 4MB and I never experienced any problems.
My guess is that your HTTP server configuration is the problem here. Which one are you using? IIS, Tomcat, Apache...?
If it is a standard FME Server installation (with the built-in Tomcat HTTP server and the default FME Server configuration), this should not happen. My workspaces were over 4MB and I never experienced any problems.
My guess is that your HTTP server configuration is the problem here. Which one are you using? IIS, Tomcat, Apache...?
Hi,
I'm using nginx as a reverse proxy, I add to my config:
# set client body size to 20M #
client_max_body_size 20M;
And start working.
Thanks!!!
Hi,
I'm using nginx as a reverse proxy, I add to my config:
# set client body size to 20M #
client_max_body_size 20M;
And start working.
Thanks!!!
Glad you figured it out and thanks for sharing the solution. It helps others who might have the same issue!