0

I'm getting the following xml format for every message coming from xmpp

- (void)xmppStream:(XMPPStream *)sender didReceiveMessage:(XMPPMessage *)message
{
 NSLog(@"Message %@",message);        
}

In console its printing

<message
    xmlns="jabber:client" from="10000006956@xmpp-dev.peeks.com" to="10000006956@xmpp-dev.peeks.com/mobile">
    <result
        xmlns="urn:xmpp:mam:tmp" id="1483781596098940">
        <forwarded
            xmlns="urn:xmpp:forward:0">
            <message
                xmlns="jabber:client" from="10000006931@xmpp-dev.peeks.com/mobile" to="10000006956@xmpp-dev.peeks.com" type="chat">
                <body>Hi</body>
                <delay
                    xmlns="urn:xmpp:delay" from="xmpp-dev.peeks.com" stamp="2016-12-22T04:50:17.023Z">Offline Storage
                </delay>
            </message>
            <delay
                xmlns="urn:xmpp:delay" from="xmpp-dev.peeks.com" stamp="2017-01-07T09:33:16.099Z">
            </delay>
        </forwarded>
    </result>
</message>

I want to fetch "from", "to", "body", and "stamp" from every message and i did the following

NSXMLElement *body = message;
    NSXMLElement *messageb  = [body elementForName:@"result" xmlns:@"urn:xmpp:mam:tmp"];
    NSXMLElement *forwa=[messageb elementForName:@"forwarded" xmlns:@"urn:xmpp:forward:0"];
    NSXMLElement *msg=[forwa elementForName:@"message" xmlns:@"jabber:client"];
    NSXMLElement *TD=[forwa elementForName:@"delay" xmlns:@"urn:xmpp:delay"];

    NSString *from=[[msg elementForName:@"from" xmlns:@"jabber:client"] stringValue];
    NSString *to=[[msg elementForName:@"to" xmlns:@"jabber:client"] stringValue];
    NSString *bodyq=[[msg elementForName:@"body"] stringValue];
    NSString *stmp=[[TD elementForName:@"stamp" xmlns:@"urn:xmpp:delay"] stringValue];
    NSString *final=[NSString stringWithFormat:@"From: %@\nTo: %@\nBody: %@\nStamp: %@",from,to,bodyq,stmp];
    NSLog(@"forwa %@", final);

I can able to print only the message body and the log prints like

From: (null)
To: (null)
Body: hi
Stamp: (null)
4

2 回答 2

2

修复搜索属性:元素是节点(如 Body、Result 等),而其他元素只是先前元素的属性。

NSString *from=[[msg attributeForName:@"from"] stringValue];
    NSString *to=[[msg attributeForName:@"to"] stringValue];
    NSString *stmp=[[TD attributeForName:@"stamp"] stringValue];

已编辑(对不起,我最后一次使用 ObjectiveC 的工作已经很老了)。

xml namespace它是关于element而不是attributes

如果您没有再次获得,请尝试通过 NSXMLNode

NSXMLNode *fromNode = [msg attributeForName:@"from"];
NSString *from = [fromNode stringValue];
于 2017-01-10T11:11:22.260 回答
2

对于迅速 5:

func xmppStream(_ sender: XMPPStream, didReceive message: XMPPMessage) {
        if let msg = message.body {
            if let from = message.attribute(forName: "from")?.stringValue{
                print("msg: \(msg), \(from)")
            }
        }
    }
于 2019-04-17T11:06:52.763 回答