Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a JavaScript Application that has to receive a huge amount of data from other users. It is not important if some of this data gets lost. Is there some way of using JavaScript WebSockets with UDP instead of TCP?

share|improve this question

6 Answers

up vote 19 down vote accepted

No, it's not possible to have UDP communication within JavaScript. Sorry.

share|improve this answer
6  
Crap, I hope they will add this in the future. :( – rightfold Jan 11 '11 at 11:30
@TimeMachine They won't WebSockets built on top of TCP, the initial handshake is also made so that it is recognized as an HTTP upgrade request by web servers. You can read more about the protocol in the latest draft: tools.ietf.org/html/draft-abarth-thewebsocketprotocol-00 – Ivo Wetzel Jan 11 '11 at 22:17
And what about node.js? – VansFannel Jul 18 '12 at 20:31

The WebSockets protocol is over TCP only as currently defined.

You could do UDP with Flash if you are willing to use a RTMFP (Real Time Messaging Flow Protocol) server.

share|improve this answer

It sounds like what you're waiting for is WebRTC which is working it's way through the standards process. WebSockets, as other people have pointed out, run over TCP as a result of initiating with an HTTP Upgrade.

share|improve this answer

If this question is still pending: I found a project called JNEXT and there is an example using UDP. The project itself seems to be paused but at least in Firefox it works (it doesn't work with Chrome and Opera). May be it is worth to look for it.

share|improve this answer
If I'd want the user to install software, I could even better use Flash. – rightfold Mar 31 '11 at 14:52
Flash doesn't give you UDP though. – Brian DiCasa Jun 15 '11 at 1:44

I think you can leverage Silverliht 4 technology. You can create a Silverlight 4 application to communicate with server and then enbamdded it to html page. Then your JavaScript can build TCP connections via Silverlight 4 application!

share|improve this answer
I think that that is very hard for a web app that is to be used by Mac and iPhone developers only. ^^' – rightfold Jan 29 '11 at 22:45
1  
Also, Silverlight doesn't support "real" UDP, only multicast UDP and that only works on LAN. – Martin Ørding-Thomsen Sep 27 '11 at 20:43
The question is for UDP not TCP – user63612 May 17 '12 at 4:09

You could write a WebSocket server to serve as proxy/bridge between TCP/UDP.

share|improve this answer
2  
That would defeat the entire purpose of UDP. – rightfold Feb 9 '12 at 12:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.