XMPPManager
XMPPManager copied to clipboard
Receiving Messages Not Working
I am able to send message to XMPP server(Openfire) but unable to receive any messages in ios app .This function is not being called :
-
(void)xmppStream:(XMPPStream *)sender didReceiveMessage:(XMPPMessage *)message {
NSString *msg = [[message elementForName:@"body"] stringValue]; NSString *from = [[message attributeForName:@"from"] stringValue];
NSMutableDictionary *m = [[NSMutableDictionary alloc] init]; [m setObject:msg forKey:@"msg"]; [m setObject:from forKey:@"sender"];
[_messageDelegate newMessageReceived:m]; //[m release];
}
您好,我的iOS端,提示验证失败,提示信息:2016-04-26 18:33:35.458 XMPPManager[45954:3352011] -- 验证登录错误:
@L05t 检查一下用户名,服务器的接口ip信息;