This might be a silly question:
Does HTTP ever use the User Datagram Protocol? For example if one is streaming a MP3 or a video over the web using HTTP does it internally use UDP for the transport?
|
|
Typically, no. Streaming is seldom used over HTTP itself, and HTTP is seldom run over UDP. See, however, RTP. For something as your example (in the comment), you're not showing a protocol for the resource. If that protocol were to be HTTP, then I wouldn't call the access "streaming"; even if it in some sense of the word is since it's sending a (possibly large) resource serially over a network. Typically, the resource will be saved to local disk before being played back, so the network transfer is not what's usually meant by "streaming". As commenters have pointed out, though, it's certainly possible to really stream over HTTP, and that's done by some. |
|||||||||||
|
|
From RFC 2616:
So although it doesn't explicitly say so, UDP is not used because it is not a "reliable transport". |
|||||||||||
|
|
Maybe just a bit of trivia, but UPnP will use HTTP formatted messages over UDP for device discovery. |
|||
|
|
|
of course not necessarily on tcp. I implemented an HTTP on UDP, for use in the industry of Satellite TV broadcasting. |
|||
|
|
|
If you are streaming an mp3 or video that may not necessarily be over HTTP, in fact I'd be suprised if it was. It would probably be another protocol over TCP but I see no reason why you cannot stream over UDP. If you do you have to take into account that there is no certainty that your data will arrive at the other end, but I can take it that you know about UDP. To answer you question, No, HTTP does NOT use UDP. For what you talk about though, mp3/video streaming COULD happen over UDP and in my opinion should never happen over HTTP. |
|||
|
|
Port 80 UDP is also reserved for HTTP, which I find amusing as I've never seen it used, nor could I imagine a good use for it. |
|||
|
|
|
Try run HTTP over UDP with node-httpp: |
|||
|
|
|
No, HTTP runs over TCP. |
|||||||||||||||||||||
|
|
The answer: Yes Reason: See the OSI model. Explaination: HTTP is an application layer protocol, which could be encapsulated with a protocol that uses UDP, providing arguably faster reliable communication than TCP. The server daemon and client would obviously need to support this new protocol. Quake 2 protocol proves that UDP can be used over TCP to provide a basis for a structured communication system insuring flow control (e.g. chunk ids). |
|||
|
UDP is the best protocol for streaming, because it doesn't make demands for missing packages like TCP. And if it doesn't make demands, the flow is far more faster and without any buffering. Even the stream delay is lesser than TCP. That is because TCP (as a far more secure protocol) makes demands for missing packages, overwriting the existing ones. So TCP is a protocol too advanced to be used for streaming. |
|||||
|
|
Yes, HTTP, as an application protocol, can be transferred over UDP transport protocol. Here are some of the services that use UDP and an underlying protocol for transferring HTTP data and streaming it to the end-user:
This article contains further details on streaming over UDP and its reliable superset, the RUDP: Reliable UDP (RUDP): The Next Big Streaming Protocol? |
||||
|
|