I\'ve read a little about comet and also APE.
Which one is better? I want the users to see other users updated content. Like Google Wave.
And in comet, there are
I think you want to compare IFrame based techniques with Ajax (XMLHttp) based techniques.
I think the major difference is that you cannot read the response content of an AJAX request until the whole response is received by the browser. Which means, in order to simulate streaming, you will have to do something like this:
The server can hold on the request if there isn't anything to return yet.
IFrame based solution on the other hand can return multiple script
tags in response to a single request. There is no need to send another request until there is a (browser or server) request timeout.