Re: Looking best way to show server side logs to client

2014-03-16 Thread Peter Donald
Hi, My understanding is basically that you are trying to push data from the server to the client rather than having the client requesting data? In that case I tend to think of it using 4 basic strategies. These are the four we use. 1. WebSockets 2. Server-Sent Events 3. Long polling 4. Periodic

Looking best way to show server side logs to client

2014-03-14 Thread Jeremy Kittel
Hi, I'm struggling to find the best solution to send server logs to client side. I've went down the path of using WebSockets but that won't work in my current project. Does anyone have any suggestions? Let me know if this is to sparse of a question and more detail is needed. Thanks, Jeremy