I'm using "GroupChat" using Openfire,XMPP,iOS.
I want to fetch the history after defined time, so I google about it and i find to use "Since" for it.
NSXMLElement *history = [NSXMLElement elementWithName:@"history"];
[history addAttributeWithName:@"since" stringValue:@"2016-07-04T09:06:38.588Z"];
[xmppRoom joinRoomUsingNickname:self.xmppStream.myJID.user
history:history
password:nil];
but it fetch all record from table, i want only record after defined time. I also use an open fire time stamp, but it hasn't worked.
How do i fetch history with time ?