I want to know if this web app are using long polling or anything else “javascript trick”:
Is there a way to know that ?
Thanks 😉
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yep, they’re using long polling comet. Open Fiddler and you’ll see the requests. The URL pretty much gives it away.
/comet/channel?v=2&r=969379046853&id=184754471255&channel=longpolling&seq=15&timeout=10000In IE, the client makes a request and waits for the server to respond. As soon as the server responds the connection is closed and another connection is made to wait for the next response. This prevents memory issues that can occur in IE with unclosed connections. It’s possible in Firefox they just use multipart-replace.