2009/4/21 NN <[email protected]>: > > When an user tries to send AJAX requests simultaneously from multiple > browser tabs, one request gets completed and the page loads but the > other AJAX calls are preempted. As a result of which the response is > empty for the other calls. Only one call survives. In my application > using struts 2.0, JSP and javascript and the prototype framework, i > found that the server response is empty in the cases mentioned above > though the data gets updated in teh database with the request > parameters. The onSucess event handler for Ajax.request gets called > but the the response is empty. > > Can you please help? > > Thanks > > > >
Under normal circumstances, you can only have 2 active connections per server. You have to work within that limitation. -- ----- Richard Quadling Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731 "Standing on the shoulders of some very clever giants!" --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
