无法连接到openfire服务器,没有错误或警告

时间:2015-03-14 14:51:31

标签: ios objective-c xmpp openfire xmppframework

我按照此tutorial并使用xmpp ios代码示例尝试连接到openfire服务器。

代码如下

- (void)setupStream
{
NSLog(@"Setting up Stream");

xmppStream = [[XMPPStream alloc] init];
[xmppStream setHostName:@"52.0.99.122"];
[xmppStream setHostPort:5222];

NSLog(@"Setup XMPP connection credentials");
#if !TARGET_IPHONE_SIMULATOR
{
    xmppStream.enableBackgroundingOnSocket = YES;
}
#endif

xmppReconnect = [[XMPPReconnect alloc] init];

[xmppReconnect  activate:xmppStream];

[xmppStream addDelegate:self         delegateQueue:dispatch_get_main_queue()];

}

我想知道是否有办法调试或至少看到一些错误消息。 感谢。

0 个答案:

没有答案