[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-13 Thread George
It has nothing to so with AJAX. You did not say what you using on your server side so i can not tell. But a lot of frameworks like ASP or ASP.NET will serialize requests made from the same Sesssion (browser). To avoid programmers having to manage concurent access to resources in Session object.

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-13 Thread hotdog...@gmail.com
On Dec 13, 11:05 am, George gev...@comcast.net wrote: It has nothing to so with AJAX. You did not say what you using on your server side so i can not tell. But a lot of frameworks like ASP or ASP.NET will serialize requests made from the same Sesssion (browser). To avoid programmers having

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread Josh Nathanson
Yes, you should be able to fire the other requests. Maybe you could post a little code. -- Josh -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of hotdog...@gmail.com Sent: Friday, December 12, 2008 10:48 AM To: jQuery (English)

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread hotdog...@gmail.com
On Dec 12, 1:02 pm, Josh Nathanson joshnathan...@gmail.com wrote: Yes, you should be able to fire the other requests.  Maybe you could post a little code. Ah, thank you for your quick response! Here's the relevant part of my code: http://paste2.org/p/114906 This is in the head / section of my

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread Josh Nathanson
, 2008 3:18 PM To: jQuery (English) Subject: [jQuery] Re: Problems with more than one AJAX request at a time On Dec 12, 1:02 pm, Josh Nathanson joshnathan...@gmail.com wrote: Yes, you should be able to fire the other requests.  Maybe you could post a little code. Ah, thank you for your quick

[jQuery] Re: Problems with more than one AJAX request at a time

2008-12-12 Thread hotdog...@gmail.com
On Dec 12, 5:07 pm, Josh Nathanson joshnathan...@gmail.com wrote: It looks like what you are doing there is called long polling, check this out: http://en.wikipedia.org/wiki/Comet_(programming) -- Josh Ah, thanks for pointing me to that. Unfortunately, it doesn't seem to work in jQuery.