How can Comet (aka Server Push) be used with Flash programs?
What will be needed at server side for the same?
Does this require any customised servers or will normal IIS or Apache do?
Also is Juggernaut an example of flash based comet? how does it achieve comet?
Assuming you are talking about comet as in this article, you can achieve it using the URLLoader class. At the server side, you can use any technology that you would use with a normal AJAX application like jsp, php, asp etc. I remember reading somewhere that Flash closes the URLLoader connection after 30 seconds - you should take that into account while implementing long polling.