About the simplest thing you might want to do with FMS is to play a stream to a
client. So you do something like this:

application.onConnect = function(p_client, p_bw) {
this.acceptConnection(p_client);
ls = Stream.get("playstream");
ls.play("flv:recordedstream");
}

Works just fine for a couple of minutes and then stops. Careful review of the
server administration console shows that the file "recordedstream.flv" is
playing to a nonexistent client that shows no traffic and a connection time of
Dec 31 19:00. It appears that the server thinks the client is idle and kills
both it and the playing stream.

So how would you play a recorded stream to a client? (Not using the VOD
application, I don't want to give the client a choice of what stream to play, I
want to choose the stream.)