XMPPFramework
XMPPFramework copied to clipboard
An XMPP Framework in Objective-C for Mac and iOS
CoreData: fault: One or more models in this application are using transformable properties with transformer names that are either unset, or set to NSKeyedUnarchiveFromDataTransformerName. Please switch to using "NSSecureUnarchiveFromData" or...
On the XEPs support page, it is possible to have a XEPs and RFCs support page with version (XEP-XXXX v1.2)? - https://github.com/robbiehanson/XMPPFramework/wiki/XEPs Examples: - https://github.com/UWPX/UWPX-Client/blob/master/README.md - https://github.com/telldus/xmppjs-client-plugins/blob/master/README.md - https://github.com/ortuman/jackal/blob/master/README.md -...
We are using UNNotificationServiceExtension to handle push notification in killed state. When app is killed xmpp is delivered by push notification. Now we need to send acknowledgement for received message...
For some unknown reasons only outgoing messages are being stored correctly. On the other hand all incoming messages have body = NULL. I checked Sqlite database and `messageStr` for incoming...
Facing a weird issue, while chatting in a group i am not able to receive any message. When going back to previous controller and coming back to chat where i...
``` func getArchieveMessages(forUser user:String){ var fields = [DDXMLElement]() fields.append(XMPPMessageArchiveManagement.field(withVar: "start", type: "text-single", andValue: Date().addingTimeInterval(-(2*24*60*60)).toString(format: .messageRTetriveFormat))) xmppMAM.resultAutomaticPagingPageSize = 150 xmppMAM.retrieveMessageArchive(at: XMPPJID(string: user), withFields: fields, with: nil) // xmppMAM.retrieveMessageArchive(at: nil, withFields: [child],...
There is a typo in the stanza when sending an `IQ` for creating a new room light with members. This is the stanza that is printed out before the stream...
I would like to update our existing module
let xmppDateString = NSDate().xmppDateTimeString var fields: [XMLElement] = [] let start = XMPPMessageArchiveManagement.field(withVar: "end", type: nil, andValue: xmppDateString) fields.append(start) print(self.mam_info.entityBareId+ServiceName_arroa) let value = DDXMLElement(name: NTConstants.value, stringValue: self.mam_info.entityBareId+ServiceName_arroa) let child =...
When we uninstall iOS app from my device, after install new app I want chat history from the server (open fire).