gpt4 book ai didi

objective-c - Objective-C - 使用 ASIHTTPRequest 来自 GET 的 HTTP/0.9 响应

转载 作者:技术小花猫 更新时间:2023-10-29 11:25:30 28 4
gpt4 key购买 nike

我已经开始在我的 iOS 项目中使用 ASIHTTPRequest 来执行 REST 服务器方法调用,并且到目前为止使用它非常成功。我只有一个奇怪的间歇性问题。偶尔我会通过使用 [ASIHTTPRequest startAsynchronous] 得到以下响应:

HTTP/0.9 200 正常

发生这种情况时,我的服务器方法不会被调用。通常每个方法调用都会返回一个以“HTTP/1.1”开头的响应。我使用带有 GeoTrust/RapidSSL 证书的 HTTPS 来保护连接。有趣的是,我发现如果我尝试连接到 SSL 端口 (443) 但将“http”指定为协议(protocol),我会得到相同的“HTTP/0.9 200 OK”响应。

只是为了添加更多信息 - 问题主要发生在应用程序闲置一段时间后。例如。请求成功完成,然后让应用程序空闲一段时间,然后在下一个请求时出现问题,然后应用程序继续正常工作。

任何人都可以阐明可能发生的事情吗?

非常感谢,乔纳森

更新:我已经在下面粘贴了一些问题发生时 ASIHTTPRequest 输出的调试信息:

2012-07-12 09:35:49.376 mytestapp[3038:18f07] [CONNECTION] Closing connection #13 because it has expired
2012-07-12 09:35:49.377 mytestapp[3038:18f07] [CONNECTION] Closing connection #14 because it has expired
2012-07-12 09:35:49.378 mytestapp[3038:18f07] [CONNECTION] Closing connection #15 because it has expired
2012-07-12 09:35:49.380 mytestapp[3038:18f07] [CONNECTION] Request #39 will use connection #16
2012-07-12 09:35:49.381 mytestapp[3038:18f07] [CONNECTION] Request #40 will use connection #17
2012-07-12 09:35:49.382 mytestapp[3038:18f07] [CONNECTION] Request #41 will use connection #18
2012-07-12 09:35:49.529 mytestapp[3038:18f07] [STATUS] Request <ASIHTTPRequest: 0x88a1e00> finished downloading data (0 bytes)
2012-07-12 09:35:49.529 mytestapp[3038:18f07] [STATUS] Request <ASIHTTPRequest: 0x88a1e00> received response headers
2012-07-12 09:35:49.530 mytestapp[3038:18f07] [AUTH] Request <ASIHTTPRequest: 0x88a1e00> has passed Basic authentication
2012-07-12 09:35:49.530 mytestapp[3038:18f07] [CONNECTION] Got no keep-alive header, will keep this connection open for 60.000000 seconds
2012-07-12 09:35:49.530 mytestapp[3038:18f07] [CONNECTION] Request #41 finished using connection #18
2012-07-12 09:35:49.531 mytestapp[3038:18f07] [STATUS] Request finished: <ASIHTTPRequest: 0x88a1e00>
2012-07-12 09:35:49.531 mytestapp[3038:15803] responseHeaders={
}
2012-07-12 09:35:49.531 mytestapp[3038:18f07] [STATUS] Request cancelled: <ASIHTTPRequest: 0x88a1e00>
2012-07-12 09:35:49.532 mytestapp[3038:18f07] [STATUS] Request cancelled: <ASIHTTPRequest: 0x88a0200>
2012-07-12 09:35:49.532 mytestapp[3038:18f07] [STATUS] Request <ASIHTTPRequest: 0x88a0200>: Cancelled
2012-07-12 09:35:49.532 mytestapp[3038:18f07] [CONNECTION] Request #39 failed and will invalidate connection #16
2012-07-12 09:35:49.533 mytestapp[3038:18f07] [STATUS] Request cancelled: <ASIHTTPRequest: 0x88a0a00>
2012-07-12 09:35:49.533 mytestapp[3038:18f07] [STATUS] Request <ASIHTTPRequest: 0x88a0a00>: Cancelled
2012-07-12 09:35:49.533 mytestapp[3038:18f07] [CONNECTION] Request #40 failed and will invalidate connection #17

最佳答案

在这种情况下不确定 IOS 的细节,但 HTTP 0.9 已完全放弃。这样做的原因很明确——它不支持“Host:” header 。这意味着单个 IP 根本不能有虚拟主机。这些东西在 90 年代末就已经过时了。

这种 react 在现实生活中不应该发生。如果它仍然发生,一些客户端发出了类似“GET/HTTP/0.9”的请求。但这些客户大约在 15 年前就消失了。

SSL 是 HTTP 不太了解的东西。所以我相信这没有关系。设置 SSL 隧道,然后运行纯 HTTP。

作为结论,我会说您或其他人可能触发了过时的方法。而 IOS 可能只是不知道如何处理它。也许 IOS 方法是包含主机名的有限方法,因此它不会触发。无论如何,如果客户真的在说 0.9,你不应该担心它,因为它无论如何都不会从大多数站点得到正确的答案。如果客户端说 1.1 而你回答 0.9,那么请求可能会以某种方式被误解,并且会出现尽可能低的 HTTP 版本的回退机制。也许您忘记为请求设置主机名或其中出现语法错误?

关于objective-c - Objective-C - 使用 ASIHTTPRequest 来自 GET 的 HTTP/0.9 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10181474/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com