RE: Struts Action + Multiple Request

2006-07-18 Thread RODRIGUES DE ALMEIDA Thiago
What would it be ?
Why not the browser problem ?

Thank you,
Thiago 

-Message d'origine-
De : Dakota Jack [mailto:[EMAIL PROTECTED] 
Envoyé : vendredi 14 juillet 2006 07:11
À : Struts Users Mailing List
Objet : Re: Struts Action + Multiple Request

It's not the browser.  That is bad information.

On 7/13/06, RODRIGUES DE ALMEIDA Thiago [EMAIL PROTECTED] wrote:

 Hi Antonio,
 Thank you for your reply.

 Would you have the reference for these problems ?
 If it's a browser's bug or limitation, i would need to prove it. :)

 I'll try to do this research on my own too.
 I appreciate if you help me out.

 Arrivederci,
 Thiago

 -Message d'origine-
 De : Antonio Petrelli [mailto:[EMAIL PROTECTED]
 Envoyé : jeudi 13 juillet 2006 11:36
 À : Struts Users Mailing List
 Objet : Re: Struts Action + Multiple Request

 RODRIGUES DE ALMEIDA Thiago ha scritto:
  The problem i have is concerning the performance.
  Since the user has oppened more than 4 windows, the browser (IE 6) 
  becomes freezed.
 

 If I am not wrong, this is a browser bug (or feature), not a Struts 
 nor Tomcat issue.
 If I remember correctly, both IE6 and Firefox open at most four 
 connections to the same server and until one of them have finished, 
 the other requests will wait.

 HTH
 Ciao
 Antonio

 -
 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]




--
You can lead a horse to water but you cannot make it float on its back.
~Dakota Jack~

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Struts Action + Multiple Request

2006-07-13 Thread Antonio Petrelli

RODRIGUES DE ALMEIDA Thiago ha scritto:

The problem i have is concerning the performance.
Since the user has oppened more than 4 windows, the browser (IE 6)
becomes freezed.
  


If I am not wrong, this is a browser bug (or feature), not a Struts 
nor Tomcat issue.
If I remember correctly, both IE6 and Firefox open at most four 
connections to the same server and until one of them have finished, the 
other requests will wait.


HTH
Ciao
Antonio

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Struts Action + Multiple Request

2006-07-13 Thread David Delbecq
RODRIGUES DE ALMEIDA Thiago wrote:
 Hi All,
 I have this scenario:

 In my application, the user has the possibility of openning multiple
 windows (browser) simutaneously.
 In this case, each new window makes requests for data thru a struts
 action.

 That means, one user can make multiple requests to the servlet container
 (Tomcat 5.5) at the same time.
   
No problem there, this is made for it and, unless you use something else
than request scope bean for your struts action, it shouldn't be a
problem for struts too.
 The problem i have is concerning the performance.
 Since the user has oppened more than 4 windows, the browser (IE 6)
 becomes freezed.

 I have taken a look into the server and apparently there are no problems
 of memory or processor.
 For the Tomcat side, i did not see any disturbing problem concerning
 performance.

 What would you recommend as solutions for this kind of scenario ?
   
Dump the Threads of your jvm, you might simply be in a deadlock with
your application.
 Thanks in advance,

 Thiago de Almeida


 -
 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]



RE: Struts Action + Multiple Request

2006-07-13 Thread RODRIGUES DE ALMEIDA Thiago
Hi Antonio,
Thank you for your reply.

Would you have the reference for these problems ?
If it's a browser's bug or limitation, i would need to prove it. :)

I'll try to do this research on my own too.
I appreciate if you help me out.

Arrivederci,
Thiago

-Message d'origine-
De : Antonio Petrelli [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 13 juillet 2006 11:36
À : Struts Users Mailing List
Objet : Re: Struts Action + Multiple Request

RODRIGUES DE ALMEIDA Thiago ha scritto:
 The problem i have is concerning the performance.
 Since the user has oppened more than 4 windows, the browser (IE 6) 
 becomes freezed.
   

If I am not wrong, this is a browser bug (or feature), not a Struts nor 
Tomcat issue.
If I remember correctly, both IE6 and Firefox open at most four connections to 
the same server and until one of them have finished, the other requests will 
wait.

HTH
Ciao
Antonio

-
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]



RE: [OT] Re: Struts Action + Multiple Request

2006-07-13 Thread RODRIGUES DE ALMEIDA Thiago
Hi Antonio,
Thank you for all these important informations.

Now, one last point:

What would you recommend for my scenario ?
Should i limit the number of windows openned ? Or maybe should i try to pass 
over this HTTP limitation ?
What would you do ?

Thank you very much,
Thiago 

-Message d'origine-
De : Antonio Petrelli [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 13 juillet 2006 15:24
À : Struts Users Mailing List
Objet : [OT] Re: Struts Action + Multiple Request

RODRIGUES DE ALMEIDA Thiago ha scritto:
 Would you have the reference for these problems ?
   

With a bit of googling:
http://support.microsoft.com/kb/183110

 If it's a browser's bug or limitation, i would need to prove it. :)
   

It seems to be a standard, at least for HTTP 1.1: 
http://blogs.msdn.com/ie/archive/2005/04/11/407189.aspx
To prove it I think you could open a command prompt shell and use netstat, to 
see how many connections are made between the client and the server

Ciao
Antonio

-
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]



Re: [OT] Re: Struts Action + Multiple Request

2006-07-13 Thread Antonio Petrelli

RODRIGUES DE ALMEIDA Thiago ha scritto:

What would you recommend for my scenario ?
Should i limit the number of windows openned ? Or maybe should i try to pass 
over this HTTP limitation ?
What would you do ?
  


Err... I would do... nothing! It does not seem a problem to me, because 
if I wait until a window have loaded its page, the other can start 
loading its one.
Or probably I will try to reduce the amount of transferred data, such as 
removing images...


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [OT] Re: Struts Action + Multiple Request

2006-07-13 Thread Monkeyden

I love this part:
...you should avoid doing standard Web browsing while these settings are in
effect

Why should standard Web browsing not be subject to the HTTP Protocol
Specification?  These guys are characters.  I'm glad I made the right
decision years ago when I chose the Java camp, and not Microshaft.



On 7/13/06, Antonio Petrelli [EMAIL PROTECTED] wrote:


RODRIGUES DE ALMEIDA Thiago ha scritto:
 Would you have the reference for these problems ?


With a bit of googling:
http://support.microsoft.com/kb/183110

 If it's a browser's bug or limitation, i would need to prove it. :)


It seems to be a standard, at least for HTTP 1.1:
http://blogs.msdn.com/ie/archive/2005/04/11/407189.aspx
To prove it I think you could open a command prompt shell and use
netstat, to see how many connections are made between the client and
the server

Ciao
Antonio

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: [OT] Re: Struts Action + Multiple Request

2006-07-13 Thread RODRIGUES DE ALMEIDA Thiago
Thank you Antonio,

I really need to figure out how to solve this problem. From the client's point 
of view, it's very annoying to have to wait for such a long response when he 
opens many browsers.
Sometimes the main window, since the other windows open as popups, gets 
freezed.

Well, if you have any other tip i will appreciate.

Thank you very much,
Thiago


-Message d'origine-
De : Antonio Petrelli [mailto:[EMAIL PROTECTED] 
Envoyé : jeudi 13 juillet 2006 17:11
À : Struts Users Mailing List
Objet : Re: [OT] Re: Struts Action + Multiple Request

RODRIGUES DE ALMEIDA Thiago ha scritto:
 What would you recommend for my scenario ?
 Should i limit the number of windows openned ? Or maybe should i try to 
 pass over this HTTP limitation ?
 What would you do ?
   

Err... I would do... nothing! It does not seem a problem to me, because if I 
wait until a window have loaded its page, the other can start loading its one.
Or probably I will try to reduce the amount of transferred data, such as 
removing images...

-
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]