- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面是问题的简要描述:
我有一个应用程序使用网络套接字 SocketRocket - 客户端,Nodejs + Socket.io - 服务器端。 我在启动应用程序时建立套接字连接,一切正常。如果我暂停应用程序(进入后台、锁定屏幕等),我可以在进入前台时重新连接。
但是,如果我失去连接(例如,如果我在路由器上阻止自己(我在 5-10 秒内收到套接字故障错误),然后解除阻止自己)-我将无法使用 连接到任何 url NSURLConnection
。 (我为什么要为此烦恼?好吧,人们往往在移动设备上经常放松,所以我必须处理这个错误)
如果我以前有一个有效的连接,则在连接恢复/进入前台时调用此代码。
-(void) connectToHost:(NSString *)host onPort:(NSInteger)port withParams:(NSDictionary*)params withNamespace:(NSString *)endpoint
{
if (!_isConnected && !_isConnecting)
{
_isConnecting = YES;
_host = host;
_port = port;
_endpoint = [endpoint copy];
NSMutableString *query = [[NSMutableString alloc] initWithString:@""];
[params enumerateKeysAndObjectsUsingBlock: ^(id key, id value, BOOL *stop) {
[query appendFormat:@"&%@=%@",key,value];
}];
NSString *s = [NSString stringWithFormat:HANDSHAKE_URL, _host, _port, rand(), query];
[self log:[NSString stringWithFormat:@"Connecting to socket with URL: %@",s]];
_timeout = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(disconnect) userInfo:nil repeats:NO];
[[LRResty client] get:s withBlock:^(LRRestyResponse *response) {
[_timeout invalidate], _timeout = nil;
if ( response.status == 200 )
{
NSString *responseString = [response asString];
[self log:[NSString stringWithFormat:@"requestFinished() %@", responseString]];
NSArray *data = [responseString componentsSeparatedByString:@":"];
_sid = [data objectAtIndex:0];
[self log:[NSString stringWithFormat:@"sid: %@", _sid]];
_heartbeatTimeout = [[data objectAtIndex:1] floatValue] + 7.0;
[self log:[NSString stringWithFormat:@"heartbeatTimeout: %f", _heartbeatTimeout]];
NSString *t = [data objectAtIndex:3];
NSArray *transports = [t componentsSeparatedByString:@","];
[self log:[NSString stringWithFormat:@"transports: %@", transports]];
[self openSocket];
}
else
{
[_delegate socketIOHandshakeFailed:self];
}
}];
}
}
这就是我在正常情况下得到的结果:
Connecting to socket with URL: https://example.com:9001/socket.io/1/?t=282442
requestFinished() ==> 843717395328441553:60:60:websocket
debug: Finished request GET https://example.com:9001/socket.io/1/?t=282442 <LRRestyRequest>
如果我在连接失败后尝试重新连接:
Connecting to socket with URL: https://example.com:9001/socket.io/1/?t=282475249
我尝试运行一个同步请求,但它会阻塞我的 UI 并且永远不会完成。所以,实际上 request 可能正在尝试开始,但永远不会到达执行点。
这是我在调试器中暂停应用程序时得到的结果: 您可以在此处查看屏幕截图 -> http://avvs.co/static/app_paused.jpg
检查线程 7 -
#0 0x9855fc22 in mach_msg_trap ()
#7 0x026852d3 in -[NSRunLoop(NSRunLoop) run] ()
#8 0x00019b1b in -[LRURLRequestOperation start]
#9 0x00016670 in -[LRRestyRequest start]
更新
这是该线程的完整操作列表,如果您能指出这里的错误,我们将非常高兴
#0 0x9855fc22 in mach_msg_trap ()
#1 0x9855f1f6 in mach_msg ()
#2 0x0073c10a in __CFRunLoopServiceMachPort ()
#3 0x0069f5d5 in __CFRunLoopRun ()
#4 0x0069ed84 in CFRunLoopRunSpecific ()
#5 0x0069ec9b in CFRunLoopRunInMode ()
#6 0x0268540f in -[NSRunLoop(NSRunLoop) runMode:beforeDate:] ()
#7 0x026852d3 in -[NSRunLoop(NSRunLoop) run] ()
#8 0x00019b0b in -[LRURLRequestOperation start]
#9 0x00016660 in -[LRRestyRequest start]
最佳答案
我终于找到了解决方案。实际问题不在 NSURLConnection 中,而在套接字实现中。当失去连接时,应用程序正在关闭输入和输出流,但它们并没有从运行循环中移除,也没有被调度。通过修复它,我能够恢复连接。
关于iphone - NSURLConnection 在我得到 Error Domain=NSPOSIXErrorDomain Code=57 后不会响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10552371/
我用 PHP 创建了 API,现在正在测试它。 它在 chrome 和 firefox 上运行成功,但 safari 出现错误,“NSPOSIXErrorDomain:100。” 这个错误有时会发生,
我正在使用 AFHTTPRequestOperation 将一个大文件下载到我设备上的 Documents 目录中。 NSURLRequest *request = [NSURLRequest req
我的 friend 来找我,要求我创建一个视频作品集应用程序。我认为这是尝试 Swift 的一个很好的借口,这就是我所做的。 (该应用不打算在应用商店发布,只能通过 Testflight 分发) 我遇
在 iOS 9 中,我将 NSURL 与 NSURLConnection 一起使用,对于一个特定的 URL,它在 - (void)connection:(NSURLConnection *)conne
我在构建时遇到这样的错误 IOS应用程序在 React Native项目: was encountered processing the command (domain=NSPOSIXErrorDom
我正在尝试运行我的项目,但出现以下错误: 这是详细的错误: Details copyfile of file:///Users/Arturo/Library/Developer/Xcode/Deriv
我有一个 NSURLSessionDownloadTask 和一个 backgroundSessionConfigurationWithIdentifier。当我锁定屏幕时,出现此异常: Error
尽管构建良好,但我的模拟器无法运行任何应用。 错误信息如下: Unable to run app in Simulator An error was encountered while running
我正在尝试使用 .get 方法调用使用 Alamofire 的服务。该请求没有什么特别的,没有参数,只有一个授权 header 。 我在这里有点生气,因为当我使用相同的 URL 和授权 token 在
有时我会收到这个错误 Error Domain=NSPOSIXErrorDomain Code=65 "No route to host" UserInfo={NSLocalizedDescripti
我试图通过在终端中执行命令来从 ios 模拟器捕获应用程序预览的视频。 但是当我尝试使用下面的命令 xcrun simctl io 启动 recordVideo appPreview.mp4 终端给我
以下 Swift 代码总是返回:Error Domain=NSPOSIXErrorDomain Code=47 "The operation couldn't be completed. Addres
我在特定环境中通过 WiFi 网络在 FTP 服务器上发送多个文件时遇到一个奇怪的问题。我使用自己自制的 ftp 客户端(在套接字上制作)。 当我在我的环境“E1”中测试在我的服务器“S1”上发送文件
我正在使用 NSURLSession 后台 session 配置在后台下载文件。 - (void)initBackgroundSession { self.backgroundSessionM
我正在尝试使用离线包将 React Native 应用程序部署到我的手机。我以前没有为 ios 开发过,也不知道在哪里寻找这个错误。是的,我的应用名为“ReactNativeTest”,我不知道 Xc
下面是问题的简要描述: 我有一个应用程序使用网络套接字 SocketRocket - 客户端,Nodejs + Socket.io - 服务器端。 我在启动应用程序时建立套接字连接,一切正常。如果我暂
我正在尝试连接到 Exchange Web 服务服务器,该服务器在 10 月 7 日之前曾在 CFNetwork 上运行,但现在不再运行了。我没有看到这段时间安装的任何软件包,所以我猜这是服务器更改。
我正在玩 CocoaAsyncSocket在 Swift 中绑定(bind)到 UDP 套接字并通过本地网络接收消息。 我正在初始化一个套接字,并尝试绑定(bind)到一个端口,但收到了一个 NSPO
环境 Mac OS X Version 10.11.3 (15D21) Xcode Version 7.2 (7C68) Simulator Version 9.2 (SimulatorApp-643
我正在尝试实现 GCDAsyncSocket到 mac os x (Mojave 10.14.3) 应用程序以监听来自 localhost:port 的数据。 问题是无论我选择哪个端口,我总是会收到此
我是一名优秀的程序员,十分优秀!