Re: [nodejs] How to be sure in delivering data between server and client?

2012-11-19 Thread P. Douglas Reeder
I suggest using Fiddler or another web debugging proxy to capture correct and incorrect interactions, and write integration tests using that data. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this mess

Re: [nodejs] How to be sure in delivering data between server and client?

2012-11-15 Thread Ben Noordhuis
On Thu, Nov 15, 2012 at 10:56 AM, greeka wrote: > I have TCP server written in NodeJS and clients on flash. The communications > between clients and server builded ower my own protocol (small commands - > max 50 bytes per command). But some time (aprox 10% from total commands sent > from server to

[nodejs] How to be sure in delivering data between server and client?

2012-11-15 Thread greeka
I have TCP server written in NodeJS and clients on flash. The communications between clients and server builded ower my own protocol (small commands - max 50 bytes per command). But some time (aprox 10% from total commands sent from server to client) we lost the data. And I can't understand why