使用BITS(后台智能传输服务)和AJAX上传文件
有谁知道是否可以使用 BITS 协议进行文件上传?协议是HTML1.1,所以理论上应该是可以的。
任何想法都会被采纳。
谢谢, 。伊瓦尔
does anyone know if it is possible to do a file upload using the BITS protocoll? The protocol is HTML1.1, so in theory it should be possible.
Any ideas are appriciated.
Thanks,
. Ivar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有可能……这就是 BITS 的用途。 BITS 客户端计算机可以启动 3 种作业类型之一:1) 下载、2) 上传和 3) 带回复上传。
通常,人们通过使用 BITS 服务器扩展设置 IIS 虚拟目录来使用它,这意味着 IIS 将在 BITS 协议中扮演服务器角色。但协议已记录,这意味着您可以编写自己的 BITS 服务器(如果需要,也可以编写自己的 BITS 客户端)。
这是协议文档的链接,以及这里是一般 BITS 文档的链接。
Yes, it is possible ... that's what BITS is for. The BITS client machine can initiate one of 3 job types: 1) download, 2) upload, and 3) upload-with-reply.
Usually, people use this by setting up an IIS virtual directory with the BITS Server Extensions, which means IIS will play the server role in the BITS protocol. But the protocol is documented, which means you can write your own BITS server (and your own BITS client as well if you want).
Here's a link to the protocol documentation, and here's a link to the general BITS documentation.