惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News and Events Feed by Topic
D
Docker
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
F
Full Disclosure
H
Hackread – Cybersecurity News, Data Breaches, AI and More
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
L
LangChain Blog
H
Help Net Security
B
Blog
T
Tailwind CSS Blog
V
V2EX
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
美团技术团队
A
About on SuperTechFans
C
Cybersecurity and Infrastructure Security Agency CISA
K
Kaspersky official blog
I
InfoQ
Project Zero
Project Zero
I
Intezer
Google DeepMind News
Google DeepMind News
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Threat Research - Cisco Blogs
Last Week in AI
Last Week in AI
C
Cyber Attacks, Cyber Crime and Cyber Security
G
GRAHAM CLULEY
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
AWS News Blog
AWS News Blog
Spread Privacy
Spread Privacy
S
Securelist
Recorded Future
Recorded Future
D
Darknet – Hacking Tools, Hacker News & Cyber Security
博客园 - 叶小钗
S
Security Affairs
Blog — PlanetScale
Blog — PlanetScale
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
The Hacker News
The Hacker News

博客园 - 测试之家

英文资源检查工具 鸭子和螃蟹 管道(一个不常用,但是很用的功能) 让VB应用程序支持鼠标滚轮 安装程序文件测试工具 监视进程 自己带领新人的一些过程(2) 尴尬的课堂往事 搜索引擎大全(很常用的哦) ACT 客户端创建的负载量估计值 自己带领新人的一些过程(1) 如何根据IP得到对方的机器名? 利用google查找资料 联系方式 去微软测试的总结——ACT(原创) 汉字的对话(搞笑版) 蝴蝶嫁蜗牛 新的历史翻开一页——解决不久前碰到与磁盘碎片有关的问题 介绍一下本人常用操作系统快键(原创)
ACT 对象描述----connection对象简历 (1)
测试之家 · 2005-04-18 · via 博客园 - 测试之家

Posted on 2005-04-18 15:02  测试之家  阅读(462)  评论(0)    收藏  举报

  • 自我介绍:
    客户端用connection与web服务器之间建立http连接,只要保持连接,可以用单个连接发送多个请求(Connection.Send)。
  • 需要注意的Web 服务器断开 HTTP 连接情况如下:
    1、无效的客户端请求或者服务器错误(错误代码为400-599)的通常会使服务器关闭连接;
    2、开始连接和发送请求之间的延迟较长,服务器会断开连接;
    3、Request.HTTPVersion 属性设置的值小于 1.1,Web 服务器会在发送其响应后断开连接,因为 HTTP 协议的早期版本不支持持久连接;
  • 备注:
    其可以由Test对象的CreateConnection方法得到,Connection常用方法为 Connection.Send(oRequest)

刷新页面返回顶部