Re: A question regarding websocket implementation of Apache Tomcat 8.0.33

2016-05-12 Thread Tejas Nandanikar
Isn't there any workaround to this situation? In my application, a database update operation depends on whether the message was delivered to the client or not, so in that scenario, I would never know if the message was delivered. And even if onError() is called later, I can never know which message

Re: A question regarding websocket implementation of Apache Tomcat 8.0.33

2016-05-12 Thread Mark Thomas
On 12/05/2016 08:24, Tejas Nandanikar wrote: > Thank you for your quick reply. > So consider a case where client abruptly loses internet connection. > In that scenario, the sendText() would return normally as the server > hasn't received 'close' packet from the client, did I get it right? Assuming

Re: A question regarding websocket implementation of Apache Tomcat 8.0.33

2016-05-12 Thread Tejas Nandanikar
Thank you for your quick reply. So consider a case where client abruptly loses internet connection. In that scenario, the sendText() would return normally as the server hasn't received 'close' packet from the client, did I get it right? On Thu, May 12, 2016 at 12:43 PM, Mark Thomas wrote: > On 12

Re: A question regarding websocket implementation of Apache Tomcat 8.0.33

2016-05-12 Thread Mark Thomas
On 12/05/2016 06:16, Tejas Nandanikar wrote: > I am using Apache Tomcat 8.0.33. > I was going through Java documentation about RemoteEndpoint.Basic > which says that sendText(String text) blocks until all of the message > has been transmitted. > But I noticed that when the client loses internet con

A question regarding websocket implementation of Apache Tomcat 8.0.33

2016-05-11 Thread Tejas Nandanikar
I am using Apache Tomcat 8.0.33. I was going through Java documentation about RemoteEndpoint.Basic which says that sendText(String text) blocks until all of the message has been transmitted. But I noticed that when the client loses internet connection and sendText() method is called on the server s