0

我在我的应用程序中使用 XMPP。每当我尝试向任何特定 ID(例如我的代码中的“test.codemen@gmail.com”)发送消息时,我的消息都不会被发送。我的代码如下。提前致谢。

- (IBAction)sendMsg:(id)sender 
{
    NSXMLElement *body = [NSXMLElement elementWithName:@"body"];
    [body setStringValue:msgField.text];

    NSXMLElement *message = [NSXMLElement elementWithName:@"message"];
    [message addAttributeWithName:@"type" stringValue:@"chat"];
    [message addAttributeWithName:@"to" stringValue:@"test.codemen@gmail.com"];
    [message addChild:body];

    iPhoneXMPPAppDelegate *share = [iPhoneXMPPAppDelegate sharedInstance];
    [[share xmppStream] sendElement:message];
}
4

2 回答 2

0

打印 xml,然后查看消息中的内容。也许您正在向错误的 JID 发送消息。

于 2014-03-13T03:19:49.253 回答
0

你的代码对我来说看起来不错。Google Talk 仅将消息发送给您订阅的联系人。您向其发送消息的用户是否在您的联系人列表中?

于 2013-04-12T11:06:45.820 回答