The only situation where I can imagine tomcat forcing a file size limit is when it runs out of disk-space and this should produce an error message.
I seem to remember a similar problem, I can't remember exactly how I solved it ( I may have re-written the page ) but here are some things to look for: Does the page take a dis-proportionately long time to load or timeout? -This could indicate that the program is stuck in a loop or other area. Do you use nested loops (particularly "while" loops)? -This could easily kill tomcat, a nested while loop with a lot of data is often a killer! Try running the program with verbose comments and / or with some kind of "step-through" mode to see if it's a programming error. HTH, apologies for any rambling / inconsistancies - it's 6pm on a friday night and I'm knackered!! Ad. On Fri, 2004-04-16 at 17:49, Yansheng Lin wrote: > Hi, > Normally that's an indication of a programming error. There is no file size > limit in java, so I don't think Tomcat would impose a limit all by itself. > > -Yan > > -----Original Message----- > From: Leonardo Ribas [mailto:[EMAIL PROTECTED] > Sent: April 16, 2004 08:34 > To: [EMAIL PROTECTED] > Subject: Incomplete HTML > > > My tomcat is returning incomplete html pages when the html to be returned is > too big. > For example, when i want to create a combo box with all cities from my > country, tomcat return a incomplete html like this: > ... > <select> > <option>city 1</option> > <option>city 2</option> > <option>city 3</option> > ... > <option>city 300</option> > <option>city 301</option> > HERE TOMCAT ENDS THE HTML FOR EXAMPLE. > > Any idea about whats happening?? > > Thanks > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
