发布于 2017年05月10日 更新于 2017年05月10日
作者:simon
到底该用哪个接口,微软这么说,api方式:功能齐全,不过调用复杂些;com接口,调用简单,属于一个封装,有部分功能缺失。https://msdn.microsoft.com/zh-cn/library/aa383158(v=vs.85).aspx
|
C/C++ API |
COM interface |
Advantages |
- Responses can be processed in chunks, which is more efficient.
- POST operations can also be processed in chunks, speeding processing time.
- AutoProxy support.
- Access to the full feature set of WinHTTP.
- Binary data can easily be handled.
|
- Creating an application is easy and requires fewer lines of code than the C/C++ API.
- The interface can be used by scripting languages.
|
Disadvantages |
- Processing is more complex.
- The C/C++ API requires more steps than the COM interface to perform the same actions.
- Setting up a request takes more code.
|
- The COM interface does not provide access to the full feature set of WinHTTP.
- It is difficult to handle binary data types in some scripting languages, such as VBScript and JScript.
- The COM interface does not support AutoProxy.
- Applications must use the COM APARTMENT_THREADED model.
- Before a response can begin being processed, the entire response must first be received and buffered.
|
看了此文的人貌似还看了这些:
∵RESTful API 最佳实践(转) 2018-10-10
∵NLPIR/ICTCLAS2014中科院分词系统Api接口 For 易语言 2014-04-09
∴lnmp下mysql 5.6内存占用过高解决方法 2015-11-02
∴dedecms优化中常用的一些函数汇总 2012-06-16
∴使用JavaScript控制HTML元素的显示和隐藏 2023-02-10
∴wordpress换空间实录,让windows的iis也支持去固定链接index.php化! 2011-02-21
∴2013年flash倒计时及win7侧边栏小工具制作-by simon 2013-06-12
∴浏览器输入淘宝首页会自动跳转到淘宝特卖频道,何解? 2012-07-14
∴360极速浏览器在chrome商店无法安装插件提示不支持版本的解决方法 2014-07-11
∴LNMP及LANMP环境一键搭建教程 2013-08-25