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

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

博客园 - Blaze

eVC++就是eVC++啊 - Blaze - 博客园 VC++常用数据类型及其操作详解[徐兆元] From VB.NET to C# and Back Again [By Darren Neimke and Scott Mitchell ] 请不要做浮躁的人(老文了,还是转一下,共勉) 地球上最慢的网路不在巴布里亚新几内亚和尼泊尔之间,而在中国网通和电信之间! [翻译]用TcpClient建立GPRS连接 1年零2个月零25天 我回来了 .NET的Pascal--Chrome来了! Gmail疯了?50个邀请! 检举个博客园的Bug! INI配置文件的替代品-XML配置文件的操作 INI的替代品--XML配置文件读取与保存 Wallop下蛋送邀请。 从WebService的SessionID说起 Gmail下蛋了 udp的奇怪问题 运动会痛苦经历 n个VB.Net C#代码转换工具 关于时间的加减计算
webservice对"小"规模数据传输的效率问题
Blaze · 2004-10-24 · via 博客园 - Blaze

目前正准备弄一个免费的智能设备网络棋牌项目,对于和服务器的通信犯了难。一开始想用webservice,担心流量问题。(毕竟1K三分钱) 做了一个测试,调用http://www.KamalPatel.net上代码转换的WebService,拦截到以下数据包:
下面是数据包中的Http头:
HTTP/1.1 200 OK..Date: Sun, 24 Oct 2004 01:04:14 GMT..Server: Microsoft-IIS/6.0..Set-Cookie: server=1..X-Powered-By: ASP.NET..X-AspNet-Version: 1.1.4322..Cache-Control: private, max-age=0..Content-Type: text/xml; charset=utf-8..Content-Length: 600...
这些已经很多了,看下面才让人寒~

需要的内容只是这些<ExecuteResult>.'----------------------------------------------------------------..' Converted from C# to VB .NET using CSharpToVBConverter(1.2)' Developed by: Kamal Patel (http://www.KamalPatel.net) ..'----------------------------------------------------------------..</ExecuteResult></ExecuteResponse>
总字节数851,可除去那些格式占的,我们所需的只有291字节,确实很恐怖。这样算下来一部棋要2分钱。可能不太现实。
想到自己来控制tcp连接,担心移动网关是否会限制住。手头也没有smartphone,无条件调试,希望大家能够帮忙。