1

In what way WebDAV protocol is better than HTTP protocol in terms of upload.

Is there comparison between Socket Upload protocol and WebDav Upload protocol?

Abdennour TOUMI
  • 87,526
  • 38
  • 249
  • 254
Abdallah Ghrb
  • 183
  • 3
  • 13
  • [WebDAV is an extension of HTTP](http://en.wikipedia.org/wiki/WebDAV), the question requires rethought. – Steve-o Mar 13 '13 at 13:52

2 Answers2

2

WebDav is an extension of the HTTP protocol. Like AJAX for PHP. The upload progess is much more faster and easy to setup in a big company network than HTTP regular uploads.

A WebDAV-Server supports SSL(Secure Sockets Layer) too. You can upload via HTTP-POST directorys.

Sockets are permanently connected to the destination until the task is done.

Hidden
  • 3,598
  • 4
  • 34
  • 57
-1

WebDAV upload uses PUT, which is the same as in HTTP. So there really is no difference.

Julian Reschke
  • 40,156
  • 8
  • 95
  • 98