WebDev increase POST size

I am hitting a limit of 200000 bytes in the WebDev module as machines are posting status data to Ignition.

java.lang.IllegalStateException: Form too large: 210409 > 200000

Is there any way to increase the post size? I tried something like below, but doesn’t appear to do anything, however I assume this would to be configured before the request comes in…

request['servletRequest'].setAttribute('maxFormContentSize', 2000000)

Add this as an additional startup param in ignition.conf:

-Dorg.eclipse.jetty.server.Request.maxFormContentSize=2000000

Note that the existing limit is to protect against possible DoS attacks, so… hopefully you’re in a closed environment.

Awesome, thanks @Kevin.Herron

Yes, I figured that was one of the reasons… We are all private lan for our GWs.