Problem processing large data using Applet-Servlet communication

Posted by Marquinio on Stack Overflow See other posts from Stack Overflow or by Marquinio
Published on 2010-06-10T19:39:01Z Indexed on 2010/06/10 19:42 UTC
Read the original article Hit count: 216

Filed under:
|
|
|

Hi everyone.

I have an Applet that makes a request to a Servlet. On the servlet it's using the PrintWriter to write the response back to Applet:

out.println("Field1|Field2|Field3|Field4|Field5......|Field10");

There are about 15000 records, so the out.println() gets executed about 15000 times.

Problem is that when the Applet gets the response from Servlet it takes about 15 minutes to process the records. I placed System.out.println's and processing is paused at around 5000, then after 15 minutes it continues processing and then its done.

Has anyone faced a similar problem? The servlet takes about 2 seconds to execute. So seems that the browser/Applet is too slow to process the records.

Any ideas appreciated.

Thanks.

© Stack Overflow or respective owner

Related posts about java

Related posts about applet