Re: ping websocket clients

2016-10-04 Thread Cristian Lorenzetto
Just a suggestion. Testing browsers saw they support automatic pong replying to ping, but developers can't ping programmatically because no ping API exists. So it suggests server might send ping automatically. In addition also for security reasons it is better server test about running

Re: ping websocket clients

2016-10-03 Thread Mark Thomas
On 03/10/2016 16:33, Cristian Lorenzetto wrote: > Using websockets with tomcat i saw the connection is never closed until > client closes it. Correct. > It sounds Ok just if server send ping frame to client. > Does tomcat make it? Tomcat does not send pings. That is an application

ping websocket clients

2016-10-03 Thread Cristian Lorenzetto
Using websockets with tomcat i saw the connection is never closed until client closes it. It sounds Ok just if server send ping frame to client. Does tomcat make it? -if yes what is the ping interval?