WebSocket support on mobile devices
Posted
by
Marco W.
on Stack Overflow
See other posts from Stack Overflow
or by Marco W.
Published on 2013-01-12T16:13:19Z
Indexed on
2013/10/27
21:54 UTC
Read the original article
Hit count: 285
For an Android multiplayer game's communication between players I'm using a WebSocket server and TooTallNate's Java library on the client side to enable WebSocket support in the Android app. So just to point it out clearly, WebSocket support in mobile browsers is not important to me.
Unfortunately, users report that they're experiencing problems such as connection failures or unreceived messages. Is that a general problem of WebSockets on mobile devices (blocked ports, firewalls, mobile Internet connection) or is that probably a flaw in the client side code?
Do you have experience with WebSocket client libraries such as the one above? I've just discovered autobahn.ws for Android - but I don't know if it's worth switching from my current library (see above).
What about WAMP? Is WebSocket technology not exactly the adequate solution so that I should use the sub-protocol (?) WAMP?
© Stack Overflow or respective owner