Re: Max length of String - report in a single string for display

2007-01-02 Thread Leon Rosenberg
hope this is clear and could you please suggest me a good approach to handle any size data. Thank you. * Regards, Sharon Jolly * -- *From:* Leon Rosenberg [mailto:[EMAIL PROTECTED] *Sent:* Wed 1/3/2007 12:34 AM *To:* Struts Users Mailing List *Subject:* Re: Max length o

RE: Max length of String - report in a single string for display

2007-01-02 Thread Sharon Jolly
. Thank you. Regards, Sharon Jolly From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Wed 1/3/2007 12:34 AM To: Struts Users Mailing List Subject: Re: Max length of String - report in a single string for display What about retrieving and storing byte chunks? This

Re: Max length of String - report in a single string for display

2007-01-02 Thread Leon Rosenberg
What about retrieving and storing byte chunks? This way you don't have to copy the data and its easier to write out the chunks one-by-one for the outputstream too, since writing out a huge string is kindof messy for the performance. However it doesn't matter for the vm whether you store the data i

Max length of String - report in a single string for display

2007-01-02 Thread Sharon Jolly
Hi, I am currently working on a struts based web application which interacts with legacy systems to retrieve data for display and update. There is one scenario in my application where the ejb layer makes multiple host calls to the legacy system to retrieve data for a report. I was handling thi