java.lang.StackOverflowError means that the JVM ran out of room in memory for processing more method calls. This shouldn't happen under normal use; it's usually tied to runaway recursive calls, or possibly infinite loops. I'd check for either of those cases, perhaps with some code library that you're using on all your forms. I successfully submit huge forms (up to about 80 fields) to CFMX without any issues, so I suspect its a problem with the CF code being executed, not the CF server. However, it might be tied to using CFFORM for validation, if you're using it. I'm not on my forms, so that might be the difference.
HTH, barneyb > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 06, 2003 11:33 AM > To: CF-Talk > Subject: CFMX null null errors > > > Does any one know when these CFMX null null errors come from? It looks to > me like when a form with lots of fields (30+) gets submitted, sometimes > this happens. > > The error diagnostics are: > > null null <br>The error occurred on line -1. > Type java.lang.StackOverflowError > > and sometimes in the browser all you see is "500 Null". > > Anyone seen this also? > > Brook Davies > logiforms.com > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

