New Post: Browsers unable to connect to SuperWebSocket when using wss ssl/tls
Thanks for all the effort vbguyny, I had the same problem and it now works.To others who might still have issues, be careful that "localhost" and "127.0.0.1" are two distinct addresses for your...
View ArticleNew Post: SuperWebSocket OnClose throws error undefined on Chrome 23.0.1271.64m
Hi Kerry,I was debugging my websocket server today and noticed we are getting error whenever closing the session with Chrome 23.0.1271.64mDraftHybi10Processor was used and as soon as SendPackage on...
View ArticleNew Post: SuperWebSocket OnClose throws error undefined on Chrome 23.0.1271.64m
Are you using SuperWebSocket? What's the error you got?
View ArticleNew Post: SuperWebSocket OnClose throws error undefined on Chrome 23.0.1271.64m
Hi Kerry,Figured out the error: Chrome browser returns Received a broken close frame containing a reserved status code. due to SuperWebSocket returns 1005 which is forbidden according to the draft.2nd...
View ArticleNew Post: SuperWebSocket OnClose throws error undefined on Chrome 23.0.1271.64m
How to produce this issue?I checked the code, the SuperWebSocket merely return the same closing status code to the client. If the closing handshake is from SuperWebSocket, the default closing status...
View ArticleNew Post: using superwebsocket in a native android / ios app
I am planning to develop cloud based back end using superwebsocket. The client code will be written is native android and ios. What are my options to send and receive data ? Is it still possible to...
View ArticleNew Post: using superwebsocket in a native android / ios app
It depends on your client implementation.Please simulate lots of clients and requests to test performance by yourself, because the performance also depends on your business processing.
View ArticleNew Post: using superwebsocket in a native android / ios app
Thanks for your answer. I truly appreciate your dedication to this and quick answers.What are my options to send and receive data ? Since its not a .net client how do I connect to a superwebsocket in...
View ArticleNew Post: using superwebsocket in a native android / ios app
Please find websocket client for android and iOS, and the introduction of those clients will let you know how to use them.
View ArticleNew Post: using superwebsocket in a native android / ios app
Thanks a bunch. So I can use any of these for iOShttp://code.google.com/p/unitt/wiki/UnittWebSocketClienthttps://github.com/square/SocketRocketAnd for Android...
View ArticleNew Post: SendResponse from server works only after a first message from the...
I am not sure whether this is normal behaviour. I create an instance of the WebsocketServer m_wsServer = new WebSocketServer(); m_wsServer.Setup(new RootConfig(), new ServerConfig { Port =...
View ArticleNew Post: SendResponse from server works only after a first message from the...
Does the sample SuperWebSocketWeb work for you? You also can check the Test project which should can run correctly by NUnit.
View ArticleNew Post: SendResponse from server works only after a first message from the...
The whole library works rather nicely actually, I haven't tested your samples because my websocket server works just fine.The only thing I don't understand is why I cannot send messages from the server...
View ArticleNew Post: SendResponse from server works only after a first message from the...
I think you can send data from the server after the handshake of the session is done.There is a virtual method "OnHandshaked()" in WebSocketSession, which you can use.
View ArticleNew Post: SendResponse from server works only after a first message from the...
That's not the problem.The handshake is finished and the websocket is open on both sides.If I try to send a message from server to client, I cannot do it until the client sends a message first.
View ArticleNew Post: SendResponse from server works only after a first message from the...
Can you test this issue by the sample project SuperWebSocketWeb?Send message from one browser and the get the message from the other browser.
View ArticleNew Post: SendResponse from server works only after a first message from the...
I'm afraid I won't be able to invest time on this.For the moment I'll just send a message from the client-side to actually 'open' the communication, hopefully it'll be enough.
View ArticleNew Post: How to send file from client to server by websocket ?
I have a image file in my computer and i want to send this to server.I don't know how to do itcan you show me how to send file to server ?Thanks for your help !
View ArticleNew Post: Accessing secure websocket server through http/https - trace of...
Hi Kerry,I noticed that when you access your secure websocket using https://echo.websocket.org instead of wss://echo.websocket.org, it leaves trail of socket session.I'm using version 1.5 beta...
View Article