> When users clicks links or post forms in their browsers, > sometimes they don't get any answer. By debugging the server > I realized that in such a case the OnPostDocument event is > never triggered.
Are you sure the request you don't get an answer from is received on the server? When you run a server on a non-server-platform you might miss some requests when many requests arrive at the same time. On a non-server-platform (w2000, XP etc) there is a listen backlog set to 5. That means that 5 connects is queued by the os if your server is not ready to accept the connection yet. The sixth connection will be lost. On a server-platform (w2000 server, w2003 server etc), this backlog is set to 200. Regards Bjørnar -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be
