从 WPF 应用程序上传文件
我必须将文件从 WPF 应用程序上传到服务器。以下是我尝试过的方法
- HTTPHandler
- WCF
- REST
知道哪一种更好更快吗?该应用程序托管在.Net 4.0,IIS 6上
I have to upload file from a WPF application to the server. Following are the methods i tried
- HTTPHandler
- WCF
- REST
Any idea which one would be better and faster? The application is hosted on .Net 4.0 ,IIS 6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果更快意味着更好,那么您应该使用开销最小的机制。我希望是 WCF 或 REST 流模式。
如果安全性和可靠性很重要,您应该考虑使用缓冲/分块模式。
If faster means better, you should be using the mechanism with the least overhead. I would expect that to be WCF or REST streamed mode.
If security and reliability is of importance, you should consider a buffered/chunked mode instead.