Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread password password
I think is the version of Tomcat. I have tried with other version (5.5.9) and it is working. My actual version of Tomcat is 5.5.4, I thing it is problem. Or something the configuration in the tomcat: time, number of conexions,... - LLa

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread David Delbecq
Just ran it out of curiosity here on a tomcat 5.5.17, works perfectly. Only noticeable thing is that the first file get slowed down when you start second file, but it's quite to be excpected. Measured speed: 6M/s, files are not mixed together One thing worth noticing, is that brtowser do t

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread password password
Hi, Yes I have tried with small numbers and the result is the same. I see you have tried because you know how many MB have the files. If you has tried, do you have this problem that the files are incompletes? - LLama Gratis a cualquie

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread Mir Kasim Ali
Better u give the link to file and enter the mime type xls application/vnd.ms-excel In \conf\web.xml and Restart the server Hope this will work On 6/20/06, password password <[EMAIL PROTECTED]> wrote: I have this JSP that download an excel file. It works fine if I use only one browser at th

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread Mir Kasim Ali
Better u give the link to file and enter the mime type xls application/vnd.ms-excel In \conf\web.xml and Restart the server Hope this will work On 6/20/06, Rajeev N. Jha <[EMAIL PROTECTED]> wrote: Look at the code, look at the loops, You are trying to download some 105 MB files !!! nombre

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread Rajeev N. Jha
Look at the code, look at the loops, You are trying to download some 105 MB files !!! nombre is like 15 bytes at least (a) either you wait for a real long time (b) or you set the content-length in advance (c) or better still try with small numbers for (int l=0;l<30;l++){ for (int k=0;k<

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread password password
I have tried in others browsers and the result is the same. The files are download but incomplets. And while the JSP continues executing the code, a don't understand. "Rajeev N. Jha" <[EMAIL PROTECTED]> escribió: password password wrote: > I have this JSP that download an excel file. > It

Re: Problem to download a file from 2 browsers at the time

2006-06-20 Thread Rajeev N. Jha
password password wrote: I have this JSP that download an excel file. It works fine if I use only one browser at the same time. The problem is when I try to do this but from 2 browsers at the same time, (for example in a same computer). From each browser I can download a part of the file but

Problem to download a file from 2 browsers at the time

2006-06-20 Thread password password
I have this JSP that download an excel file. It works fine if I use only one browser at the same time. The problem is when I try to do this but from 2 browsers at the same time, (for example in a same computer). From each browser I can download a part of the file but not the complete file.