Closed sertony closed 8 years ago
Hi,
What is your SDK version?
Hi, 2.6.2
Are you sure that this is the only instance of this dialog in your memory? By the way, QMServices handling dialog joining automatically.
I see that QMDialogsMemoryStorage automatically sends joinWithCompletion: request when adding to the memory, but for some reason the completion block is never executed. I see no logs in it, while I see "Attempt to join...".
if (join && chatDialog.type != QBChatDialogTypePrivate) {
NSLog(@"Attempt to join...")
[chatDialog joinWithCompletionBlock:^(NSError *error) {
//
NSLog(@"Joined with error: %@", error);
if (completion) {
completion(chatDialog,error);
}
}];
}
I receive this error "Cannot create/join room when already creating/joining/joined" because QMDialogsMemoryStorage is calling the same request already with no luck.
Are you sure that dialog that you are trying to join have correct occupantIDs? Also please update to the latest SDK 2.6.3.
Meanwhile please provide us full log from the beginning of the app start till this error.
Yes, I've checked it several times. I am only trying to join any dialog from my list of dialogs which I get from
- (void)allDialogsWithPageLimit:(NSUInteger)limit
extendedRequest:(NSDictionary *)extendedRequest
iterationBlock:(void(^)(QBResponse *response, NSArray *dialogObjects, NSSet *dialogsUsersIDs, BOOL *stop))interationBlock
completion:(void(^)(QBResponse *response))completion
Ok, I will try SDK 2.6.3.
Here are the logs:
2016-01-22 17:14:54.095 ChatNBook[5077:798683] Init - QMAuthService service...
2016-01-22 17:14:54.095 ChatNBook[5077:798683] Init - QMChatService service...
2016-01-22 17:14:54.121 ChatNBook[5077:798683] Init - QMUsersService service...
2016-01-22 17:14:54.555 ChatNBook[5077:798780] [QBCore] Request URL:https://api.quickblox.com/login.json
2016-01-22 17:14:54.557 ChatNBook[5077:798780] [QBCore] Request method: POST
2016-01-22 17:14:54.557 ChatNBook[5077:798782] [QBCore] Request parameters:{
email = "dmitry@chatnbook.com";
password = ————;
}
2016-01-22 17:14:54.557 ChatNBook[5077:798782] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2.1";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = d4629f0cb08294a62921a7c7e5031c73dd8acec8;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-22 17:14:55.516 ChatNBook[5077:798780] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "no-cache";
Connection = "keep-alive";
"Content-Length" = 389;
"Content-Type" = "application/json; charset=utf-8";
Date = "Fri, 22 Jan 2016 14:14:55 GMT";
"QB-Token-ExpirationDate" = "2016-01-22 16:13:36 UTC";
"QuickBlox-REST-API-Version" = "0.1.1";
Server = "nginx/1.8.0";
Status = "202 Accepted";
"X-Rack-Cache" = "invalidate, pass";
"X-Request-Id" = 8908bf9e74bbef2b066998021d80923c;
"X-Runtime" = "0.014794";
"X-UA-Compatible" = "IE=Edge,chrome=1";
}
2016-01-22 17:14:55.523 ChatNBook[5077:798757] [QBCore] Response object: {
user = {
"blob_id" = "<null>";
"created_at" = "2015-12-25T15:51:53Z";
"custom_data" = "<null>";
email = "dmitry@chatnbook.com";
"external_user_id" = "<null>";
"facebook_id" = "<null>";
"full_name" = "<null>";
id = 7851924;
"last_request_at" = "2016-01-22T14:14:55Z";
login = 37124930624;
"owner_id" = 36303;
phone = "<null>";
"twitter_digits_id" = "<null>";
"twitter_id" = "<null>";
"updated_at" = "2016-01-22T14:13:36Z";
"user_tags" = web;
website = "<null>";
};
}
2016-01-22 17:14:55.550 ChatNBook[5077:798755] [Core] Set default chat endpoint for QBConnectionZoneTypeAutomatic
2016-01-22 17:14:55.567 ChatNBook[5077:798783] [ChatService] Connecting to Chat, host: chat.quickblox.com, user JID: 7851924-28694@chat.quickblox.com/99E36022-32E3-425D-B2CE-7F3ADBB402E5
2016-01-22 17:14:56.763 ChatNBook[5077:798783] [ChatService] Stream did connect, supportsStartTLS: 1
2016-01-22 17:14:56.764 ChatNBook[5077:798783] [ChatService] Trying TLS...
2016-01-22 17:14:58.560 ChatNBook[5077:798783] [ChatService] Stream isSecure: YES
2016-01-22 17:14:58.952 ChatNBook[5077:798783] [ChatService] Stream did connect, supportsStartTLS: 0
2016-01-22 17:14:59.962 ChatNBook[5077:798782] [ChatService] Did authenticate, user: 7851924
2016-01-22 17:14:59.974 ChatNBook[5077:798782] [QBCore] Request URL:https://api.quickblox.com/chat/Dialog.json?limit=10
2016-01-22 17:14:59.975 ChatNBook[5077:798782] [QBCore] Request method: GET
2016-01-22 17:14:59.976 ChatNBook[5077:798782] [QBCore] Request parameters:{
limit = 10;
}
2016-01-22 17:14:59.976 ChatNBook[5077:798782] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2.1";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = d4629f0cb08294a62921a7c7e5031c73dd8acec8;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-22 17:14:59.976 ChatNBook[5077:798782] [ChatService] Presence SNT: <presence/>
2016-01-22 17:14:59.976 ChatNBook[5077:798782] [ChatService] IQ SNT: <iq type="get" id="E07FCC47-F4B1-492C-BEAD-576BCA652F2E"><query xmlns="jabber:iq:roster"/></iq>
2016-01-22 17:14:59.977 ChatNBook[5077:798782] [ChatService] Presence SNT: <presence/>
2016-01-22 17:14:59.977 ChatNBook[5077:798782] [ChatService] IQ SNT: <iq xmlns="jabber:client" type="set" id="C8C181F8-0748-4DBB-B435-66D1A3205A13"><enable xmlns="urn:xmpp:carbons:2"/></iq>
2016-01-22 17:15:00.384 ChatNBook[5077:798753] [ChatService] StreamManagement: enabled= <enabled xmlns="urn:xmpp:sm:3"/>
2016-01-22 17:15:00.583 ChatNBook[5077:798783] [ChatService] IQ RCV: <iq xmlns="jabber:client" id="C8C181F8-0748-4DBB-B435-66D1A3205A13" type="result" to="7851924-28694@chat.quickblox.com/99E36022-32E3-425D-B2CE-7F3ADBB402E5"/>
2016-01-22 17:15:00.583 ChatNBook[5077:798783] [ChatService] IQ RCV: <iq xmlns="jabber:client" id="E07FCC47-F4B1-492C-BEAD-576BCA652F2E" type="result" to="7851924-28694@chat.quickblox.com/99E36022-32E3-425D-B2CE-7F3ADBB402E5"><query xmlns="jabber:iq:roster"/></iq>
2016-01-22 17:15:00.835 ChatNBook[5077:798782] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
Connection = "keep-alive";
"Content-Length" = 5142;
"Content-Type" = "application/json; charset=utf-8";
Date = "Fri, 22 Jan 2016 14:15:00 GMT";
Etag = "\"6a7f53563faee80b82b39c8c777300db\"";
"QB-Token-ExpirationDate" = "2016-01-22 16:13:36 UTC";
"QuickBlox-REST-API-Version" = "0.1.1";
Server = "nginx/1.8.0";
Status = "304 Not Modified";
"Strict-Transport-Security" = "max-age=15768000;";
"X-Rack-Cache" = miss;
"X-Request-Id" = 73cf79ca602b50f30dda07d51fd832fe;
"X-Runtime" = "0.030885";
"X-UA-Compatible" = "IE=Edge,chrome=1";
}
2016-01-22 17:15:00.858 ChatNBook[5077:798757] [QBCore] Response object: {
items = (
{
"_id" = 569fc4b9a0eb47abd20003f9;
"created_at" = "2016-01-20T17:32:41Z";
data = {
DateSince = "01/02/2016";
DateUntil = "10/02/2016";
Places = "\U0420\U0438\U0433\U0430, \U041b\U0430\U0442\U0432\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
};
"last_message" = "\U0422\U0435\U0441\U0442";
"last_message_date_sent" = 1453446720;
"last_message_user_id" = 7897774;
name = "Chat with Dmitry";
"occupants_ids" = (
7851924,
7897774
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-22T07:12:01Z";
"user_id" = 7897774;
"xmpp_room_jid" = "28694_569fc4b9a0eb47abd20003f9@muc.chat.quickblox.com";
},
{
"_id" = 569faae6a28f9a81e5000664;
"created_at" = "2016-01-20T15:42:30Z";
data = {
DateSince = "10/02/2016";
DateUntil = "20/02/2016";
Places = "\U041c\U043e\U0441\U043a\U0432\U0430, \U0420\U043e\U0441\U0441\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
};
"last_message" = "7897774#1";
"last_message_date_sent" = 1453314408;
"last_message_user_id" = 7897774;
name = "\U0427\U0430\U0442 \U043f\U043e\U0435\U0437\U0434\U043a\U0438";
"occupants_ids" = (
6294670,
7851924,
7883940,
7897774,
7911392
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T18:26:48Z";
"user_id" = 7897774;
"xmpp_room_jid" = "28694_569faae6a28f9a81e5000664@muc.chat.quickblox.com";
},
{
"_id" = 569fa80aa0eb471dce000756;
"created_at" = "2016-01-20T15:30:18Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d1\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = nttttt;
"last_message_date_sent" = 1453306043;
"last_message_user_id" = 7851924;
name = "Chat with Berjaya Eden Park London Hotel - United Kingdom";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T16:07:23Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fa80aa0eb471dce000756@muc.chat.quickblox.com";
},
{
"_id" = 569faf67a0eb47fb5f0006d4;
"created_at" = "2016-01-20T16:01:43Z";
data = {
DateSince = "<null>";
DateUntil = "<null>";
Extras = "{\"provider\":{\"id\":\"5640b83286f981b0a3ede5d4\",\"type\":\"hotel\"}}";
LinkedChats = "<null>";
Places = "<null>";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = hey;
"last_message_date_sent" = 1453305716;
"last_message_user_id" = 7851924;
name = "Chat with DoubleTree by Hilton Hotel London - West End";
"occupants_ids" = (
5787132,
7851924
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T16:01:56Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569faf67a0eb47fb5f0006d4@muc.chat.quickblox.com";
},
{
"_id" = 569fa815a0eb47f0aa000037;
"created_at" = "2016-01-20T15:30:29Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d1\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = test;
"last_message_date_sent" = 1453304783;
"last_message_user_id" = 8524521;
name = "Chat with Berjaya Eden Park London Hotel - United Kingdom";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:46:23Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fa815a0eb47f0aa000037@muc.chat.quickblox.com";
},
{
"_id" = 569fa734a0eb472a530001ab;
"created_at" = "2016-01-20T15:26:44Z";
data = {
DateSince = "10/02/2016";
DateUntil = "20/02/2016";
Places = "\U041c\U043e\U0441\U043a\U0432\U0430, \U0420\U043e\U0441\U0441\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
};
"last_message" = "\U0442\U0435\U0441\U0442";
"last_message_date_sent" = 1453303733;
"last_message_user_id" = 6294670;
name = "Hey everyone!";
"occupants_ids" = (
6294670,
7851924,
7883940,
7897774,
7911392
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:28:51Z";
"user_id" = 7897774;
"xmpp_room_jid" = "28694_569fa734a0eb472a530001ab@muc.chat.quickblox.com";
},
{
"_id" = 569fa821a0eb47b690000415;
"created_at" = "2016-01-20T15:30:41Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d1\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = "<null>";
"last_message_date_sent" = "<null>";
"last_message_user_id" = "<null>";
name = "Chat with Berjaya Eden Park London Hotel - United Kingdom";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:30:41Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fa821a0eb47b690000415@muc.chat.quickblox.com";
},
{
"_id" = 569fabada28f9adba6000518;
"created_at" = "2016-01-20T15:45:49Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d3\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = "<null>";
"last_message_date_sent" = "<null>";
"last_message_user_id" = "<null>";
name = "Chat with Hilton London Paddington Hotel";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:45:49Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fabada28f9adba6000518@muc.chat.quickblox.com";
},
{
"_id" = 569fc4baa0eb473c3b0011a7;
"created_at" = "2016-01-20T17:32:42Z";
"last_message" = "<null>";
"last_message_date_sent" = "<null>";
"last_message_user_id" = "<null>";
name = 79535007057;
"occupants_ids" = (
7851924,
7897774
);
photo = "<null>";
"silent_ids" = (
);
type = 3;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T17:32:42Z";
"user_id" = 7897774;
"xmpp_room_jid" = "<null>";
}
);
limit = 10;
skip = 0;
"total_entries" = 9;
}
2016-01-22 17:15:00.899 ChatNBook[5077:798757] [QBCore] Response object: {
items = (
{
"_id" = 569fc4b9a0eb47abd20003f9;
"created_at" = "2016-01-20T17:32:41Z";
data = {
DateSince = "01/02/2016";
DateUntil = "10/02/2016";
Places = "\U0420\U0438\U0433\U0430, \U041b\U0430\U0442\U0432\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
};
"last_message" = "\U0422\U0435\U0441\U0442";
"last_message_date_sent" = 1453446720;
"last_message_user_id" = 7897774;
name = "Chat with Dmitry";
"occupants_ids" = (
7851924,
7897774
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-22T07:12:01Z";
"user_id" = 7897774;
"xmpp_room_jid" = "28694_569fc4b9a0eb47abd20003f9@muc.chat.quickblox.com";
},
{
"_id" = 569faae6a28f9a81e5000664;
"created_at" = "2016-01-20T15:42:30Z";
data = {
DateSince = "10/02/2016";
DateUntil = "20/02/2016";
Places = "\U041c\U043e\U0441\U043a\U0432\U0430, \U0420\U043e\U0441\U0441\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
};
"last_message" = "7897774#1";
"last_message_date_sent" = 1453314408;
"last_message_user_id" = 7897774;
name = "\U0427\U0430\U0442 \U043f\U043e\U0435\U0437\U0434\U043a\U0438";
"occupants_ids" = (
6294670,
7851924,
7883940,
7897774,
7911392
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T18:26:48Z";
"user_id" = 7897774;
"xmpp_room_jid" = "28694_569faae6a28f9a81e5000664@muc.chat.quickblox.com";
},
{
"_id" = 569fa80aa0eb471dce000756;
"created_at" = "2016-01-20T15:30:18Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d1\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = nttttt;
"last_message_date_sent" = 1453306043;
"last_message_user_id" = 7851924;
name = "Chat with Berjaya Eden Park London Hotel - United Kingdom";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T16:07:23Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fa80aa0eb471dce000756@muc.chat.quickblox.com";
},
{
"_id" = 569faf67a0eb47fb5f0006d4;
"created_at" = "2016-01-20T16:01:43Z";
data = {
DateSince = "<null>";
DateUntil = "<null>";
Extras = "{\"provider\":{\"id\":\"5640b83286f981b0a3ede5d4\",\"type\":\"hotel\"}}";
LinkedChats = "<null>";
Places = "<null>";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = hey;
"last_message_date_sent" = 1453305716;
"last_message_user_id" = 7851924;
name = "Chat with DoubleTree by Hilton Hotel London - West End";
"occupants_ids" = (
5787132,
7851924
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T16:01:56Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569faf67a0eb47fb5f0006d4@muc.chat.quickblox.com";
},
{
"_id" = 569fa815a0eb47f0aa000037;
"created_at" = "2016-01-20T15:30:29Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d1\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = test;
"last_message_date_sent" = 1453304783;
"last_message_user_id" = 8524521;
name = "Chat with Berjaya Eden Park London Hotel - United Kingdom";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:46:23Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fa815a0eb47f0aa000037@muc.chat.quickblox.com";
},
{
"_id" = 569fa734a0eb472a530001ab;
"created_at" = "2016-01-20T15:26:44Z";
data = {
DateSince = "10/02/2016";
DateUntil = "20/02/2016";
Places = "\U041c\U043e\U0441\U043a\U0432\U0430, \U0420\U043e\U0441\U0441\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
};
"last_message" = "\U0442\U0435\U0441\U0442";
"last_message_date_sent" = 1453303733;
"last_message_user_id" = 6294670;
name = "Hey everyone!";
"occupants_ids" = (
6294670,
7851924,
7883940,
7897774,
7911392
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:28:51Z";
"user_id" = 7897774;
"xmpp_room_jid" = "28694_569fa734a0eb472a530001ab@muc.chat.quickblox.com";
},
{
"_id" = 569fa821a0eb47b690000415;
"created_at" = "2016-01-20T15:30:41Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d1\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = "<null>";
"last_message_date_sent" = "<null>";
"last_message_user_id" = "<null>";
name = "Chat with Berjaya Eden Park London Hotel - United Kingdom";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:30:41Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fa821a0eb47b690000415@muc.chat.quickblox.com";
},
{
"_id" = 569fabada28f9adba6000518;
"created_at" = "2016-01-20T15:45:49Z";
data = {
Extras = "{\"provider\"=>{\"id\"=>\"5640b83286f981b0a3ede5d3\", \"type\"=>\"hotel\"}}";
TypeOfChat = ProviderChat;
"class_name" = ChatData;
};
"last_message" = "<null>";
"last_message_date_sent" = "<null>";
"last_message_user_id" = "<null>";
name = "Chat with Hilton London Paddington Hotel";
"occupants_ids" = (
7851924,
8524521
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T15:45:49Z";
"user_id" = 7851924;
"xmpp_room_jid" = "28694_569fabada28f9adba6000518@muc.chat.quickblox.com";
},
{
"_id" = 569fc4baa0eb473c3b0011a7;
"created_at" = "2016-01-20T17:32:42Z";
"last_message" = "<null>";
"last_message_date_sent" = "<null>";
"last_message_user_id" = "<null>";
name = 79535007057;
"occupants_ids" = (
7851924,
7897774
);
photo = "<null>";
"silent_ids" = (
);
type = 3;
"unread_messages_count" = 0;
"updated_at" = "2016-01-20T17:32:42Z";
"user_id" = 7897774;
"xmpp_room_jid" = "<null>";
}
);
limit = 10;
skip = 0;
"total_entries" = 9;
}
2016-01-22 17:15:01.100 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569fc4b9a0eb47abd20003f9@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.100 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569faae6a28f9a81e5000664@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.101 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569fa80aa0eb471dce000756@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.101 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569faf67a0eb47fb5f0006d4@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.101 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569fa815a0eb47f0aa000037@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.113 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569fa734a0eb472a530001ab@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.113 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569fa821a0eb47b690000415@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.114 ChatNBook[5077:798783] [ChatService] Presence SNT: <presence to="28694_569fabada28f9adba6000518@muc.chat.quickblox.com/7851924"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-22 17:15:01.118 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.118 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.118 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.119 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.119 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.119 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.119 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.119 ChatNBook[5077:798783] [ChatService] StreamManagement: did request acknowledgment
2016-01-22 17:15:01.176 ChatNBook[5077:798753] Dialogs to insert 0
2016-01-22 17:15:01.176 ChatNBook[5077:798753] Dialogs to update 0
2016-01-22 17:15:01.299 ChatNBook[5077:798757] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 10
2016-01-22 17:15:04.619 ChatNBook[5077:798683] SELECTED DIALOG OCCUPANTIDS: (
7851924,
7897774
)
2016-01-22 17:15:04.621 ChatNBook[5077:798683] CURRENT USER ID: 7851924
2016-01-22 17:15:05.504 ChatNBook[5077:798683] JOIN CHAT ERROR: Error Domain=com.quickblox.xmpp Code=-1 "Cannot create/join room when already creating/joining/joined." UserInfo={NSLocalizedDescription=Cannot create/join room when already creating/joining/joined.}
I still believe that the problem is in the following method which does not execute the completion block in case I am not the creator of the chat
/**
* Join to room.
*
* @param completion Completion block with failure error.
*/
- (void)joinWithCompletionBlock:(QB_NULLABLE QBChatCompletionBlock)completion;
Same thing with SDK 2.6.3.
Can you print in console QBChatDialog instance that you are trying to join and attach log here.
This one for instance:
ID:569fc4b9a0eb47abd20003f9
Created At:2016-01-20 17:32:41 +0000
Updated At:2016-01-22 07:12:01 +0000
Room JID:28694_569fc4b9a0eb47abd20003f9@muc.chat.quickblox.com
name:Chat with Dmitry
photo:(null)
type:2
lastMessage:Тест
lastMessageDate:2016-01-22 07:12:00 +0000
occupantIDs:(
7851924,
7897774
)
userID:7897774
data:{
DateSince = "01/02/2016";
DateUntil = "10/02/2016";
Places = "\U0420\U0438\U0433\U0430, \U041b\U0430\U0442\U0432\U0438\U044f";
TypeOfChat = FriendsChat;
"class_name" = ChatData;
}
unreadMessagesCount:0
lastMessageUserID:7897774
Hi @sertony ! I don't see 56a247c2a0eb47af6a00007e dialog in previous log. Why?
@Pro100Andrey Sorry, I made a new one from another account to check if it works. Still no luck. I fixed the comment above with the dialog from the previous log.
ID:569fc4b9a0eb47abd20003f9
I have also tested my user with id = 7851924 (login = 37124930624) on simple-chat example with my Application ID = 28694.
I wasn't able to join the chat as well. No any response from the completion block of the function on very first call. If you call it second time it will return you "Cannot create/join room when already creating/joining/joined":
-(void)joinWithCompletionBlock:(QB_NULLABLE QBChatCompletionBlock)completion.
I'm experiencing the same issue with at least one of my users. Can login successfully, but joinWithCompletionBlock never completes. I started seeing this on Jan. 21 - the same user was able to join the dialog previously. I get error "You are not joined to the dialog." when trying to send a message, but I believe that's just a side effect of the join never succeeding.
Using QuickBlox (2.6.3) and QMServices (0.3.5)
Also, I'm not sure, but possibly the same issue with the javascript SDK: https://github.com/QuickBlox/quickblox-javascript-sdk/issues/102
We are currently investigating this issue, will post update soon.
Thank you for reporting the issue. We have fixed it server-side. Please check it out and let us know if there are still problems.
It works now. Thank you!
If you will have any other issues please let us know.
Hi, I'm having the same issue Using SDK 2.6.3 Account is enterprise Here are the logs and data i tried to extract:
[2421:1353527] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
(lldb) po currentUser
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 11:25:50 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:(null)
email:nahla.mortada@technivance.com
login:*******
phone:*******
tags:(null)
lastRequestAt:2016-01-26 11:25:38 +0000
customData:(null)
website:(null)
password:*******
(lldb) po dialog
ID:56a7569f21ed9dd9ec00010e
Created At:2016-01-26 11:21:03 +0000
Updated At:2016-01-26 11:42:09 +0000
Room JID:*******
name:text
photo:*******
type:2
lastMessage:Aaa
lastMessageDate:2016-01-26 11:42:09 +0000
occupantIDs:(
965,
1475
)
userID:1475
data:{
"class_name" = Advertisement;
identifier = 5506176;
}
unreadMessagesCount:0
lastMessageUserID:1475
(lldb) po error
Error Domain=com.quickblox.chat Code=-1001 "(null)" UserInfo={NSLocalizedRecoverySuggestion=You are not joined to the dialog.}
And these also
NSLog(@"USER %@",ServicesManager.instance.currentUser);
NSLog(@"AUTHORIZED: %@",ServicesManager.instance.isAuthorized ? @"YES" : @"NO");
NSLog(@"CONNECTED: %@",[QBChat instance].isConnected ? @"YES" : @"NO");
BOOL isLoginedInREST = [QBSession currentSession].currentUser != nil && [QBSession currentSession].isTokenValid;
NSLog(@"CONNECTED to the REST API: %@", isLoginedInREST ? @"YES" : @"NO");
NSLog(@"Connected :%@",[QBChat instance].isConnected ? @"YES" : @"NO");
Here is the result of them
[2421:1345533] AUTHORIZED: YES
[2421:1345533] CONNECTED: YES
[2421:1345533] CONNECTED to the REST API: YES
[2421:1345533] Connected :YES
Hi @nahlamortadatechni, Please attach extended log with QBLogLevelDebug where you send join message.
@nahlamortadatechni please create enterprise ticket.
I already made an enterprise ticket. but i saw that someone got ride of this. And the contact person is asking the tech and the process is too long. According to the debug i'm not getting that much helpful info just the following:
[2421:1352154] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1352154] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1352487] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1352154] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1352154] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1352487] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1352154] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
[2421:1345533] Failed to send message with error: Error Domain=com.quickblox.chat Code=-1001 "(null)" UserInfo={NSLocalizedRecoverySuggestion=You are not joined to the dialog.}
@nahlamortadatechni This issue error was server-side. To understand what is your problem please attach logs from the start of the app till this join error. Dont forget to turn on all QB logs by adding this into appdelegate:
// Enables Quickblox REST API calls debug console output
[QBSettings setLogLevel:QBLogLevelDebug];
Already Enabled
[QBSettings setApplicationID:kApplicationID];
[QBSettings setAuthKey:kAuthKey];
[QBSettings setAuthSecret:kAuthSecret];
[QBSettings setAccountKey:kAcconuntKey];
[QBSettings setLogLevel:QBLogLevelDebug];
[QBSettings enableXMPPLogging];
[ServicesManager.instance.chatService addDelegate:self];
Please attach logs from the start of the app till this join error.
2016-01-26 15:52:57.207 OurApp[2487:1386891] Network is reachable.
2016-01-26 15:52:57.214 OurApp[2487:1386841] Init - QMAuthService service...
2016-01-26 15:52:57.215 OurApp[2487:1386841] Init - QMChatService service...
2016-01-26 15:52:57.221 OurApp[2487:1386841] Init - QMUsersService service...
2016-01-26 15:52:57.278 OurApp[2487:1386889] Network is reachable.
2016-01-26 15:52:57.621 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:45:01 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:44:59 +0000
customData:(null)
website:(null)
2016-01-26 15:52:57.621 OurApp[2487:1386841] AUTHORIZED: NO
2016-01-26 15:52:57.621 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:52:57.621 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:52:57.621 OurApp[2487:1386841] Connected :NO
2016-01-26 15:52:57.621 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:45:01 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:44:59 +0000
customData:(null)
website:(null)
2016-01-26 15:52:57.622 OurApp[2487:1386841] AUTHORIZED: NO
2016-01-26 15:52:57.622 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:52:57.622 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:52:57.622 OurApp[2487:1386841] Connected :NO
2016-01-26 15:52:57.630 OurApp[2487:1386906] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:52:57.630 OurApp[2487:1386906] [QBCore] Request method: POST
2016-01-26 15:52:57.630 OurApp[2487:1386906] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" = *************;
environment = development;
};
}
2016-01-26 15:52:57.632 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:45:01 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:44:59 +0000
customData:(null)
website:(null)
2016-01-26 15:52:57.632 OurApp[2487:1386841] AUTHORIZED: NO
2016-01-26 15:52:57.631 OurApp[2487:1386906] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:57.632 OurApp[2487:1386906] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/login.json
2016-01-26 15:52:57.632 OurApp[2487:1386906] [QBCore] Request method: POST
2016-01-26 15:52:57.632 OurApp[2487:1386906] [QBCore] Request parameters:{
login = "4sale_************";
password = “******”;
}
2016-01-26 15:52:57.632 OurApp[2487:1386906] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:57.633 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:52:57.633 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:52:57.633 OurApp[2487:1386841] Connected :NO
2016-01-26 15:52:57.633 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:45:01 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:44:59 +0000
customData:(null)
website:(null)
2016-01-26 15:52:57.633 OurApp[2487:1386841] AUTHORIZED: NO
2016-01-26 15:52:57.633 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:52:57.633 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:52:57.633 OurApp[2487:1386841] Connected :NO
2016-01-26 15:52:57.635 OurApp[2487:1386907] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:52:57.636 OurApp[2487:1386907] [QBCore] Request method: POST
2016-01-26 15:52:57.637 OurApp[2487:1386907] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:52:57.637 OurApp[2487:1386907] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:57.637 OurApp[2487:1386907] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:52:57.638 OurApp[2487:1386907] [QBCore] Request method: POST
2016-01-26 15:52:57.638 OurApp[2487:1386907] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:52:57.639 OurApp[2487:1386907] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:57.667 OurApp[2487:1386906] Dialogs to insert 0
2016-01-26 15:52:57.667 OurApp[2487:1386906] Dialogs to update 0
2016-01-26 15:52:57.831 OurApp[2487:1386891] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:52:57.832 OurApp[2487:1386891] [QBCore] Request method: POST
2016-01-26 15:52:57.832 OurApp[2487:1386891] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:52:57.833 OurApp[2487:1386891] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:57.897 OurApp[2487:1386891] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:52:57.897 OurApp[2487:1386891] [QBCore] Request method: POST
2016-01-26 15:52:57.898 OurApp[2487:1386891] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:52:57.899 OurApp[2487:1386891] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:58.709 OurApp[2487:1386906] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "no-cache";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:58 GMT";
Server = "nginx/1.8.0";
Status = "202 Accepted";
"qb-token-expirationdate" = "2016-01-26 15:44:59 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 7f19bbdc094d80fe5471cfd0640f85ce;
"x-runtime" = "0.032682";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:58.715 OurApp[2487:1386906] [QBCore] Response object: {
user = {
"application_id" = 5;
"blob_id" = "<null>";
"created_at" = "2016-01-21T14:09:29Z";
"custom_data" = "<null>";
email = "nahla.mortada@technivance.com";
"external_user_id" = "<null>";
"facebook_id" = "<null>";
"full_name" = "Nahla Mortada";
id = 965;
"last_request_at" = "2016-01-26T13:52:26Z";
login = "4sale_************";
"owner_id" = 9;
phone = ************;
"twitter_digits_id" = "<null>";
"twitter_id" = "<null>";
"updated_at" = "2016-01-26T13:45:01Z";
"user_tags" = "<null>";
website = "<null>";
};
}
2016-01-26 15:52:58.739 OurApp[2487:1386841] Result YES
2016-01-26 15:52:58.742 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:45:01 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
password:*****
2016-01-26 15:52:58.742 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:52:58.742 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:52:58.742 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:52:58.742 OurApp[2487:1386841] Connected :NO
2016-01-26 15:52:58.753 OurApp[2487:1386906] [ChatService] Connecting to Chat, host: ourapp.quickblox.com.quickblox.com, user JID: 965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB
2016-01-26 15:52:58.755 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:45:01 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
password:*****
2016-01-26 15:52:58.755 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:52:58.755 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:52:58.755 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:52:58.755 OurApp[2487:1386841] Connected :NO
2016-01-26 15:52:58.758 OurApp[2487:1386906] [ChatService] Connecting to Chat, host: ourapp.quickblox.com.quickblox.com, user JID: 965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB
2016-01-26 15:52:58.759 OurApp[2487:1386906] [ChatService] Сonnect error: Error Domain=XMPPStreamErrorDomain Code=1 "Attempting to connect while already connected or connecting." UserInfo={NSLocalizedDescription=Attempting to connect while already connected or connecting.}
2016-01-26 15:52:58.764 OurApp[2487:1386906] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:58 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:44:59 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 15c62131f7de33ba9a99977cd403af5f;
"x-runtime" = "0.048196";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:58.766 OurApp[2487:1386889] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:52:58.766 OurApp[2487:1386889] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:58 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:44:59 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = b6fbe2c5f2b71622bcdb24ce4cf5bb0a;
"x-runtime" = "0.062355";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:58.768 OurApp[2487:1386889] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:52:58.769 OurApp[2487:1386889] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:58 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:44:59 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = b2c08b39c2ae6bf34495716eb8bac1e7;
"x-runtime" = "0.061273";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:58.770 OurApp[2487:1386889] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:52:58.771 OurApp[2487:1386889] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:58 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = c22502cb90a226e6f55b5c0ab755c99c;
"x-runtime" = "0.042208";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:58.780 OurApp[2487:1386889] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:52:58.781 OurApp[2487:1386889] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:58 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 2400ebcfaa4427803d8decb1be3cf272;
"x-runtime" = "0.030075";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:58.781 OurApp[2487:1386889] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:52:58.855 OurApp[2487:1386914] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/users/965.json?user%5Bemail%5D=Nahla.mortada%40technivance.com&user%5Bfull_name%5D=Nahla%20Mortada&user%5Bphone%5D=************
2016-01-26 15:52:58.856 OurApp[2487:1386914] [QBCore] Request method: PUT
2016-01-26 15:52:58.856 OurApp[2487:1386914] [QBCore] Request parameters:{
user = {
email = "nahla.mortada@technivance.com";
"full_name" = "Nahla Mortada";
phone = ************;
};
}
2016-01-26 15:52:58.856 OurApp[2487:1386914] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:52:59.027 OurApp[2487:1386908] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:52:59 GMT";
Etag = "\"291a1d4f95692c8f5b5841bfbead3aa4\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 48b53d9b31c6749680daa46a10264777;
"x-runtime" = "0.066860";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:52:59.030 OurApp[2487:1386906] [QBCore] Response object: {
user = {
"application_id" = 5;
"blob_id" = "<null>";
"created_at" = "2016-01-21T14:09:29Z";
"custom_data" = "<null>";
email = "nahla.mortada@technivance.com";
"external_user_id" = "<null>";
"facebook_id" = "<null>";
"full_name" = "Nahla Mortada";
id = 965;
"last_request_at" = "2016-01-26T13:52:26Z";
login = "4sale_************";
"owner_id" = 9;
phone = ************;
"twitter_digits_id" = "<null>";
"twitter_id" = "<null>";
"updated_at" = "2016-01-26T13:52:59Z";
"user_tags" = "<null>";
website = "<null>";
};
}
2016-01-26 15:52:59.127 OurApp[2487:1386891] [ChatService] Stream did connect, supportsStartTLS: 1
2016-01-26 15:52:59.127 OurApp[2487:1386891] [ChatService] Trying TLS...
2016-01-26 15:52:59.483 OurApp[2487:1386918] iRate found the app on iTunes. The App Store ID is 435463622
2016-01-26 15:52:59.678 OurApp[2487:1386914] [ChatService] Stream isSecure: YES
2016-01-26 15:52:59.846 OurApp[2487:1386891] [ChatService] Stream did connect, supportsStartTLS: 0
2016-01-26 15:53:00.648 OurApp[2487:1386906] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:53:00.648 OurApp[2487:1386906] [QBCore] Request method: POST
2016-01-26 15:53:00.648 OurApp[2487:1386906] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:53:00.648 OurApp[2487:1386906] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:53:00.688 OurApp[2487:1386841] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want.
Try this:
(1) look at each constraint and try to figure out which you don't expect;
(2) find the code that added the unwanted constraint or constraints and fix it.
(
"<_UILayoutSupportConstraint:0x1446fbb30 V:[_UILayoutGuide:0x1459089a0(0)]>",
"<_UILayoutSupportConstraint:0x1446f25c0 V:|-(0)-[_UILayoutGuide:0x1459089a0] (Names: '|':UIView:0x1446a6160 )>",
"<NSLayoutConstraint:0x1446f2f60 V:|-(0)-[UIView:0x145908820] (Names: '|':UIView:0x1446a6160 )>",
"<NSLayoutConstraint:0x14462e380 V:[_UILayoutGuide:0x1459089a0]-(-20)-[UIView:0x145908820]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x14462e380 V:[_UILayoutGuide:0x1459089a0]-(-20)-[UIView:0x145908820]>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2016-01-26 15:53:00.694 OurApp[2487:1386913] VERBOSE: GoogleAnalytics 3.14 -[GAIBatchingDispatcher persist:] (GAIBatchingDispatcher.m:517): Saved hit: {
parameters = {
"&_crc" = 0;
"&_s" = 16;
"&_u" = ".neoK9L";
"&_v" = "mi3.1.4";
"&a" = 1671523613;
"&aid" = "com.designmaster.forsale";
"&an" = OurApp;
"&av" = "8.3";
"&cd" = "Splash Screen";
"&cid" = "90d4417d-a1a5-4c37-9eb1-34603b3268b5";
"&dm" = "iPhone8,1";
"&ds" = app;
"&sr" = 750x1334;
"&t" = screenview;
"&tid" = "UA-33173165-1";
"&ul" = "en-us";
"&v" = 1;
"&z" = 15908369542231342420;
gaiVersion = "3.14";
};
timestamp = "2016-01-26 13:53:00 +0000";
}
2016-01-26 15:53:00.694 OurApp[2487:1386913] VERBOSE: GoogleAnalytics 3.14 __70-[GAIBatchingDispatcher checkIAdCampaignAttributionWithHitParameters:]_block_invoke (GAIBatchingDispatcher.m:749): iAd campaign tracking disabled because the iAd framework is not linked. See http://goo.gl/426NGa for instructions.
2016-01-26 15:53:00.698 OurApp[2487:1386841] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want.
Try this:
(1) look at each constraint and try to figure out which you don't expect;
(2) find the code that added the unwanted constraint or constraints and fix it.
(
"<_UILayoutSupportConstraint:0x1446fbb30 V:[_UILayoutGuide:0x1459089a0(0)]>",
"<_UILayoutSupportConstraint:0x1446f25c0 V:|-(0)-[_UILayoutGuide:0x1459089a0] (Names: '|':UIView:0x1446a6160 )>",
"<_UILayoutSupportConstraint:0x1446f08e0 V:[_UILayoutGuide:0x145908b30(0)]>",
"<_UILayoutSupportConstraint:0x1446efc20 _UILayoutGuide:0x145908b30.bottom == UIView:0x1446a6160.bottom>",
"<NSLayoutConstraint:0x1446f0a20 V:[UIView:0x145906770(45)]>",
"<NSLayoutConstraint:0x1446f1e50 V:[UIView:0x1459082e0(450)]>",
"<NSLayoutConstraint:0x1446e1870 V:[_UILayoutGuide:0x1459089a0]-(44)-[UIView:0x1459082e0]>",
"<NSLayoutConstraint:0x1446f32a0 V:[UIView:0x1459082e0]-(4)-[UIView:0x145906770]>",
"<NSLayoutConstraint:0x1446f3580 V:[UIView:0x145906770]-(5)-[_UILayoutGuide:0x145908b30]>",
"<NSLayoutConstraint:0x1459381b0 'UIView-Encapsulated-Layout-Height' V:[UIView:0x1446a6160(667)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x1446f1e50 V:[UIView:0x1459082e0(450)]>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2016-01-26 15:53:00.766 OurApp[2487:1386908] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:53:00 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 2defd23c55221780c767500b8d08d9ee;
"x-runtime" = "0.025089";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:53:00.767 OurApp[2487:1386908] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:53:00.797 OurApp[2487:1386841] YES
2016-01-26 15:53:00.798 OurApp[2487:1386906] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:53:00.798 OurApp[2487:1386906] [QBCore] Request method: POST
2016-01-26 15:53:00.798 OurApp[2487:1386906] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:53:00.798 OurApp[2487:1386906] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:53:00.886 OurApp[2487:1386889] [ChatService] Did authenticate, user: 965
2016-01-26 15:53:00.889 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:52:59 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
2016-01-26 15:53:00.889 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:53:00.890 OurApp[2487:1386841] CONNECTED: YES
2016-01-26 15:53:00.890 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:53:00.892 OurApp[2487:1386891] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Dialog.json?limit=50&updated_at%5Bgt%5D=1453816211.406562
2016-01-26 15:53:00.892 OurApp[2487:1386891] [QBCore] Request method: GET
2016-01-26 15:53:00.892 OurApp[2487:1386891] [QBCore] Request parameters:{
limit = 50;
"updated_at[gt]" = "1453816211.406562";
}
2016-01-26 15:53:00.893 OurApp[2487:1386891] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:53:00:893 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:53:00:894 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:53:00.894 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:52:59 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
2016-01-26 15:53:00.895 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:53:00.895 OurApp[2487:1386841] CONNECTED: YES
2016-01-26 15:53:00.895 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:53:00.897 OurApp[2487:1386906] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Dialog.json?limit=50&updated_at%5Bgt%5D=1453816211.406562
2016-01-26 15:53:00.898 OurApp[2487:1386906] [QBCore] Request method: GET
2016-01-26 15:53:00.899 OurApp[2487:1386906] [QBCore] Request parameters:{
limit = 50;
"updated_at[gt]" = "1453816211.406562";
}
2016-01-26 15:53:00.899 OurApp[2487:1386906] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:53:00.899 OurApp[2487:1386906] [ChatService] Presence SNT: <presence/>
2016-01-26 15:53:00.900 OurApp[2487:1386906] [ChatService] Presence SNT: <presence/>
2016-01-26 15:53:00.900 OurApp[2487:1386906] [ChatService] IQ SNT: <iq xmlns="jabber:client" type="set" id="B2D034C8-BD26-4576-8CF4-6D31951CD09D"><enable xmlns="urn:xmpp:carbons:2"/></iq>
2016-01-26 15:53:00.900 OurApp[2487:1386906] [ChatService] IQ SNT: <iq type="get" id="70A5A506-FD3C-4FA5-9640-2A12669C2103"><query xmlns="jabber:iq:roster"/></iq>
2016-01-26 15:53:00.900 OurApp[2487:1386906] [ChatService] Presence SNT: <presence to="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:53:00.901 OurApp[2487:1386906] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:53:00.915 OurApp[2487:1386891] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/subscriptions.json
2016-01-26 15:53:00.915 OurApp[2487:1386891] [QBCore] Request method: POST
2016-01-26 15:53:00.915 OurApp[2487:1386891] [QBCore] Request parameters:{
device = {
platform = ios;
udid = "***************************";
};
"notification_channels" = apns;
"push_token" = {
"client_identification_sequence" =************************;
environment = development;
};
}
2016-01-26 15:53:00.916 OurApp[2487:1386891] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:53:00.923 OurApp[2487:1386891] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:53:01 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 550083298999052c89e90ed97e585ee8;
"x-runtime" = "0.023121";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:53:00.924 OurApp[2487:1386891] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:53:00.978 OurApp[2487:1386908] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" to="965-5@ourapp.quickblox.com.quickblox.com"/>
2016-01-26 15:53:01.032 OurApp[2487:1386907] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:53:01 GMT";
Etag = "\"38d237ae9470cef5e2ddfcdcefaf6e1e\"";
Server = "nginx/1.8.0";
Status = "201 Created";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = "invalidate, pass";
"x-request-id" = 96f6e14bf20ac9ee536fa28cfb056d6e;
"x-runtime" = "0.022646";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:53:01.032 OurApp[2487:1386907] [QBCore] Response object: (
{
subscription = {
device = {
platform = {
name = ios;
};
udid = "***************************";
};
id = 4;
"notification_channel" = {
name = apns;
};
};
}
)
2016-01-26 15:53:01:058 OurApp[2487:7803] Received unrequested <enabled/> stanza
2016-01-26 15:53:01.059 OurApp[2487:1386906] [ChatService] StreamManagement: enabled= <enabled xmlns="urn:xmpp:sm:3"/>
2016-01-26 15:53:01:069 OurApp[2487:7803] Unexpected h value from ack: lastH=0, newH=5, numPendingStanzas=0
2016-01-26 15:53:01.070 OurApp[2487:1386891] [ChatService] IQ RCV: <iq xmlns="jabber:client" type="result" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="B2D034C8-BD26-4576-8CF4-6D31951CD09D"/>
2016-01-26 15:53:01.070 OurApp[2487:1386891] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:01.070 OurApp[2487:1386891] [ChatService] IQ RCV: <iq xmlns="jabber:client" type="result" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="70A5A506-FD3C-4FA5-9640-2A12669C2103"><query xmlns="jabber:iq:roster"/></iq>
2016-01-26 15:53:01.070 OurApp[2487:1386891] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 4
2016-01-26 15:53:01.071 OurApp[2487:1386908] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" to="965-5@ourapp.quickblox.com.quickblox.com"/>
2016-01-26 15:53:01.076 OurApp[2487:1386900] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:53:01.077 OurApp[2487:1386900] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="1475" jid="1475-5@ourapp.quickblox.com.quickblox.com/958B82B6-DA89-4949-BAC3-7D2B6F13BD9B" affiliation="admin"/></x></presence>
2016-01-26 15:53:01.077 OurApp[2487:1386900] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:53:01.137 OurApp[2487:1386906] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="1475" jid="1475-5@ourapp.quickblox.com.quickblox.com/958B82B6-DA89-4949-BAC3-7D2B6F13BD9B" affiliation="admin"/></x></presence>
2016-01-26 15:53:01.344 OurApp[2487:1386900] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:53:01 GMT";
Etag = "\"bf002331406d80906312b8bd15ccaaca\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = bc5629afb8bd83bdc14b91e1c672dc15;
"x-runtime" = "0.024092";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:53:01.346 OurApp[2487:1386900] [QBCore] Response object: {
items = (
);
limit = 50;
skip = 0;
"total_entries" = 0;
}
2016-01-26 15:53:01.348 OurApp[2487:1386900] [QBCore] Response object: {
items = (
);
limit = 50;
skip = 0;
"total_entries" = 0;
}
2016-01-26 15:53:01.348 OurApp[2487:1386900] Dialogs to insert 0
2016-01-26 15:53:01.348 OurApp[2487:1386900] Dialogs to update 0
2016-01-26 15:53:01.355 OurApp[2487:1386914] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:53:01 GMT";
Etag = "\"bf002331406d80906312b8bd15ccaaca\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = 7d3cb7dad757d7900f863838e5978a97;
"x-runtime" = "0.025186";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:53:01.355 OurApp[2487:1386914] [QBCore] Response object: {
items = (
);
limit = 50;
skip = 0;
"total_entries" = 0;
}
2016-01-26 15:53:01.356 OurApp[2487:1386914] [QBCore] Response object: {
items = (
);
limit = 50;
skip = 0;
"total_entries" = 0;
}
2016-01-26 15:53:01.356 OurApp[2487:1386906] Dialogs to insert 0
2016-01-26 15:53:01.358 OurApp[2487:1386906] Dialogs to update 0
2016-01-26 15:53:02.498 OurApp[2487:1386913] VERBOSE: GoogleAnalytics 3.14 -[GAIBatchingDispatcher persist:] (GAIBatchingDispatcher.m:517): Saved hit: {
parameters = {
"&_crc" = 0;
"&_s" = 17;
"&_u" = ".oK9L";
"&_v" = "mi3.1.4";
"&a" = 1671523614;
"&aid" = "com.designmaster.forsale";
"&an" = OurApp;
"&av" = "8.3";
"&cd" = Offers;
"&cid" = "90d4417d-a1a5-4c37-9eb1-34603b3268b5";
"&dm" = "iPhone8,1";
"&ds" = app;
"&sr" = 750x1334;
"&t" = screenview;
"&tid" = "UA-33173165-1";
"&ul" = "en-us";
"&v" = 1;
"&z" = 15908369542231342421;
gaiVersion = "3.14";
};
timestamp = "2016-01-26 13:53:02 +0000";
}
2016-01-26 15:53:05.733 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:52:59 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
2016-01-26 15:53:05.733 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:53:05.733 OurApp[2487:1386841] CONNECTED: YES
2016-01-26 15:53:05.733 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:53:05.733 OurApp[2487:1386914] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Dialog.json?limit=50&updated_at%5Bgt%5D=1453816381.357099
2016-01-26 15:53:05.733 OurApp[2487:1386914] [QBCore] Request method: GET
2016-01-26 15:53:05.733 OurApp[2487:1386914] [QBCore] Request parameters:{
limit = 50;
"updated_at[gt]" = "1453816381.357099";
}
2016-01-26 15:53:05.737 OurApp[2487:1386914] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:53:05.757 OurApp[2487:1386913] VERBOSE: GoogleAnalytics 3.14 -[GAIBatchingDispatcher persist:] (GAIBatchingDispatcher.m:517): Saved hit: {
parameters = {
"&_crc" = 0;
"&_s" = 18;
"&_u" = ".oK9L";
"&_v" = "mi3.1.4";
"&a" = 1671523615;
"&aid" = "com.designmaster.forsale";
"&an" = OurApp;
"&av" = "8.3";
"&cd" = Messages;
"&cid" = "90d4417d-a1a5-4c37-9eb1-34603b3268b5";
"&dm" = "iPhone8,1";
"&ds" = app;
"&sr" = 750x1334;
"&t" = screenview;
"&tid" = "UA-33173165-1";
"&ul" = "en-us";
"&v" = 1;
"&z" = 15908369542231342422;
gaiVersion = "3.14";
};
timestamp = "2016-01-26 13:53:05 +0000";
}
2016-01-26 15:53:05.881 OurApp[2487:1386906] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:53:06 GMT";
Etag = "\"bf002331406d80906312b8bd15ccaaca\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = ebc60d4c1a60e11014fa68770ed30af8;
"x-runtime" = "0.016602";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:53:05.881 OurApp[2487:1386906] [QBCore] Response object: {
items = (
);
limit = 50;
skip = 0;
"total_entries" = 0;
}
2016-01-26 15:53:05.881 OurApp[2487:1386906] [QBCore] Response object: {
items = (
);
limit = 50;
skip = 0;
"total_entries" = 0;
}
2016-01-26 15:53:05.882 OurApp[2487:1386906] Dialogs to insert 0
2016-01-26 15:53:05.882 OurApp[2487:1386906] Dialogs to update 0
2016-01-26 15:53:07.476 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a19531ca2130f004b09"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:07Z"/></message>
2016-01-26 15:53:07.703 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a19531ca2130f004b0a"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:07Z"/></message>
2016-01-26 15:53:08.001 OurApp[2487:1386906] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a19531ca2130f004b0b"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:07Z"/></message>
2016-01-26 15:53:08.001 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a19531ca2130f004b0c"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:08Z"/></message>
2016-01-26 15:53:08.135 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a19531ca2130f004b0d"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:08Z"/></message>
2016-01-26 15:53:09.054 OurApp[2487:1386906] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1a531ca2130f004b0e"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:09Z"/></message>
2016-01-26 15:53:09.140 OurApp[2487:1386906] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1a531ca2130f004b0f"><body>Aaaa</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816389</date_sent><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id><message_id>56a77a1a531ca2130f004b0f</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:09Z"/></message>
2016-01-26 15:53:09.167 OurApp[2487:1386902] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4594dfe1b7090041a8"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a1a531ca2130f004b0f"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:09.167 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1a531ca2130f004b10"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:09Z"/></message>
2016-01-26 15:53:09.167 OurApp[2487:1386902] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4594dfe1b7090041aa"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a1a531ca2130f004b0f"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:09.168 OurApp[2487:1386902] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:09.170 OurApp[2487:1386891] Dialogs to insert 0
2016-01-26 15:53:09.170 OurApp[2487:1386891] Dialogs to update 1
2016-01-26 15:53:09.172 OurApp[2487:1386891] Messages to insert 1
2016-01-26 15:53:09.172 OurApp[2487:1386891] Messages to update 0
2016-01-26 15:53:09.312 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:09.312 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:09:312 OurApp[2487:5403] Unexpected h value from ack: lastH=5, newH=7, numPendingStanzas=0
2016-01-26 15:53:09.315 OurApp[2487:1386900] Messages to insert 0
2016-01-26 15:53:09.315 OurApp[2487:1386900] Messages to update 1
2016-01-26 15:53:11.150 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1c531ca2130f004b14"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:11Z"/></message>
2016-01-26 15:53:11.366 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1c531ca2130f004b15"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:11Z"/></message>
2016-01-26 15:53:11.449 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1d531ca2130f004b16"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:11Z"/></message>
2016-01-26 15:53:11.576 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1d531ca2130f004b17"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:11Z"/></message>
2016-01-26 15:53:12.185 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1e531ca2130f004b18"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:12Z"/></message>
2016-01-26 15:53:12.347 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1e531ca2130f004b19"><body>Bbb</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816392</date_sent><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id><message_id>56a77a1e531ca2130f004b19</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:12Z"/></message>
2016-01-26 15:53:12.388 OurApp[2487:1386900] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4894dfe1b7090041ac"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a1e531ca2130f004b19"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:12.390 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1e531ca2130f004b1a"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:12Z"/></message>
2016-01-26 15:53:12.392 OurApp[2487:1386900] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4894dfe1b7090041ae"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a1e531ca2130f004b19"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:12.395 OurApp[2487:1386900] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:12.396 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:53:12.396 OurApp[2487:1386914] Dialogs to update 1
2016-01-26 15:53:12.397 OurApp[2487:1386914] Messages to insert 1
2016-01-26 15:53:12.397 OurApp[2487:1386914] Messages to update 0
2016-01-26 15:53:12.520 OurApp[2487:1386902] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:12:520 OurApp[2487:9e13] Unexpected h value from ack: lastH=7, newH=9, numPendingStanzas=0
2016-01-26 15:53:12.522 OurApp[2487:1386891] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:12.524 OurApp[2487:1386900] Messages to insert 0
2016-01-26 15:53:12.525 OurApp[2487:1386900] Messages to update 1
2016-01-26 15:53:14.145 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1f531ca2130f004b1e"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:14Z"/></message>
2016-01-26 15:53:14.351 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a1f531ca2130f004b1f"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:14Z"/></message>
2016-01-26 15:53:14.352 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a20531ca2130f004b20"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:14Z"/></message>
2016-01-26 15:53:14.454 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a20531ca2130f004b21"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:14Z"/></message>
2016-01-26 15:53:15.071 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a20531ca2130f004b22"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:15Z"/></message>
2016-01-26 15:53:15.152 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a20531ca2130f004b23"><body>Ccc</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816395</date_sent><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id><message_id>56a77a20531ca2130f004b23</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:15Z"/></message>
2016-01-26 15:53:15.197 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a20531ca2130f004b24"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:15Z"/></message>
2016-01-26 15:53:15.199 OurApp[2487:1386891] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4b94dfe1b7090041b0"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a20531ca2130f004b23"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:15.199 OurApp[2487:1386891] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4b94dfe1b7090041b2"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a20531ca2130f004b23"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:15.201 OurApp[2487:1386889] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:15.202 OurApp[2487:1386900] Dialogs to insert 0
2016-01-26 15:53:15.202 OurApp[2487:1386900] Dialogs to update 1
2016-01-26 15:53:15.203 OurApp[2487:1386900] Messages to insert 1
2016-01-26 15:53:15.203 OurApp[2487:1386900] Messages to update 0
2016-01-26 15:53:15:335 OurApp[2487:9e13] Unexpected h value from ack: lastH=9, newH=11, numPendingStanzas=0
2016-01-26 15:53:15.335 OurApp[2487:1386914] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:15.336 OurApp[2487:1386914] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:15.340 OurApp[2487:1386891] Messages to insert 0
2016-01-26 15:53:15.340 OurApp[2487:1386891] Messages to update 1
2016-01-26 15:53:15.680 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a21531ca2130f004b27"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:15Z"/></message>
2016-01-26 15:53:15.783 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a21531ca2130f004b28"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:15Z"/></message>
2016-01-26 15:53:15.988 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a21531ca2130f004b2a"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:15Z"/></message>
2016-01-26 15:53:16.090 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a21531ca2130f004b2b"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:16Z"/></message>
2016-01-26 15:53:16.705 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a22531ca2130f004b2c"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:16Z"/></message>
2016-01-26 15:53:17.012 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a22531ca2130f004b2d"><body>Ddd</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816396</date_sent><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id><message_id>56a77a22531ca2130f004b2d</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:16Z"/></message>
2016-01-26 15:53:17.051 OurApp[2487:1386907] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4d94dfe1b7090041b4"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a22531ca2130f004b2d"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:17.053 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a22531ca2130f004b2e"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:16Z"/></message>
2016-01-26 15:53:17.054 OurApp[2487:1386907] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4d94dfe1b7090041b6"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a22531ca2130f004b2d"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:17.055 OurApp[2487:1386907] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:17.057 OurApp[2487:1386900] Dialogs to insert 0
2016-01-26 15:53:17.057 OurApp[2487:1386900] Dialogs to update 1
2016-01-26 15:53:17.058 OurApp[2487:1386900] Messages to insert 1
2016-01-26 15:53:17.058 OurApp[2487:1386900] Messages to update 0
2016-01-26 15:53:17:319 OurApp[2487:f03] Unexpected h value from ack: lastH=11, newH=13, numPendingStanzas=0
2016-01-26 15:53:17.320 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:17.323 OurApp[2487:1386889] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:17.326 OurApp[2487:1386891] Messages to insert 0
2016-01-26 15:53:17.326 OurApp[2487:1386891] Messages to update 1
2016-01-26 15:53:17.626 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a23531ca2130f004b31"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:17Z"/></message>
2016-01-26 15:53:17.833 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a23531ca2130f004b32"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:17Z"/></message>
2016-01-26 15:53:17.934 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a23531ca2130f004b34"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:17Z"/></message>
2016-01-26 15:53:18.013 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a23531ca2130f004b35"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:18Z"/></message>
2016-01-26 15:53:18.547 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a24531ca2130f004b36"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:18Z"/></message>
2016-01-26 15:53:18.754 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a24531ca2130f004b37"><body>Eee</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816398</date_sent><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id><message_id>56a77a24531ca2130f004b37</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:18Z"/></message>
2016-01-26 15:53:18.796 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a24531ca2130f004b38"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:18Z"/></message>
2016-01-26 15:53:18.798 OurApp[2487:1386907] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4e94dfe1b7090041b8"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a24531ca2130f004b37"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:18.799 OurApp[2487:1386907] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a4e94dfe1b7090041ba"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a24531ca2130f004b37"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:18.801 OurApp[2487:1386907] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:18.803 OurApp[2487:1386889] Dialogs to insert 0
2016-01-26 15:53:18.804 OurApp[2487:1386889] Dialogs to update 1
2016-01-26 15:53:18.805 OurApp[2487:1386889] Messages to insert 1
2016-01-26 15:53:18.805 OurApp[2487:1386889] Messages to update 0
2016-01-26 15:53:19.163 OurApp[2487:1386889] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:19.163 OurApp[2487:1386889] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:19:162 OurApp[2487:5403] Unexpected h value from ack: lastH=13, newH=15, numPendingStanzas=0
2016-01-26 15:53:19.168 OurApp[2487:1386907] Messages to insert 0
2016-01-26 15:53:19.168 OurApp[2487:1386907] Messages to update 1
2016-01-26 15:53:19.368 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a24531ca2130f004b3b"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:19Z"/></message>
2016-01-26 15:53:19.373 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a25531ca2130f004b3c"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:19Z"/></message>
2016-01-26 15:53:19.798 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a25531ca2130f004b3d"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:19Z"/></message>
2016-01-26 15:53:19.907 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a25531ca2130f004b3f"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:19Z"/></message>
2016-01-26 15:53:20.216 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a25531ca2130f004b40"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:20Z"/></message>
2016-01-26 15:53:20.369 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a25531ca2130f004b41"><body>Fff</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816400</date_sent><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id><message_id>56a77a25531ca2130f004b41</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:20Z"/></message>
2016-01-26 15:53:20.415 OurApp[2487:1386908] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5094dfe1b7090041bc"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a25531ca2130f004b41"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:20.416 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a25531ca2130f004b42"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:20Z"/></message>
2016-01-26 15:53:20.425 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:53:20.426 OurApp[2487:1386914] Dialogs to update 1
2016-01-26 15:53:20.426 OurApp[2487:1386908] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5094dfe1b7090041be"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a25531ca2130f004b41"/><extraParams xmlns="jabber:client"><dialog_id>56a7569f21ed9dd9ec00010e</dialog_id></extraParams></message>
2016-01-26 15:53:20.426 OurApp[2487:1386908] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:20.427 OurApp[2487:1386914] Messages to insert 1
2016-01-26 15:53:20.428 OurApp[2487:1386914] Messages to update 0
2016-01-26 15:53:20:657 OurApp[2487:1403] Unexpected h value from ack: lastH=15, newH=17, numPendingStanzas=0
2016-01-26 15:53:20.657 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:20.660 OurApp[2487:1386914] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:20.663 OurApp[2487:1386908] Messages to insert 0
2016-01-26 15:53:20.664 OurApp[2487:1386908] Messages to update 1
2016-01-26 15:53:21.313 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a26531ca2130f004b45"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:21Z"/></message>
2016-01-26 15:53:24.486 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2a531ca2130f004b5e"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:24Z"/></message>
2016-01-26 15:53:24.898 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2a531ca2130f004b5f"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:24Z"/></message>
2016-01-26 15:53:24.899 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2a531ca2130f004b60"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:24Z"/></message>
2016-01-26 15:53:25.100 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2a531ca2130f004b61"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:25Z"/></message>
2016-01-26 15:53:25.306 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2a531ca2130f004b62"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:25Z"/></message>
2016-01-26 15:53:25.716 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2b531ca2130f004b63"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:25Z"/></message>
2016-01-26 15:53:25.922 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2b531ca2130f004b64"><body>Gggg</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816405</date_sent><dialog_id>56a4e1ca21ed9de98d007690</dialog_id><message_id>56a77a2b531ca2130f004b64</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:25Z"/></message>
2016-01-26 15:53:25.976 OurApp[2487:1386908] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5594dfe1b7090041c0"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a2b531ca2130f004b64"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:25.977 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2b531ca2130f004b65"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:25Z"/></message>
2016-01-26 15:53:25.979 OurApp[2487:1386908] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5594dfe1b7090041c2"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a2b531ca2130f004b64"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:25.981 OurApp[2487:1386900] Dialogs to insert 0
2016-01-26 15:53:25.981 OurApp[2487:1386908] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:25.981 OurApp[2487:1386900] Dialogs to update 1
2016-01-26 15:53:25.984 OurApp[2487:1386900] Messages to insert 1
2016-01-26 15:53:25.984 OurApp[2487:1386900] Messages to update 0
2016-01-26 15:53:26.331 OurApp[2487:1386902] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:26.331 OurApp[2487:1386902] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:26:330 OurApp[2487:9e13] Unexpected h value from ack: lastH=17, newH=19, numPendingStanzas=0
2016-01-26 15:53:26.337 OurApp[2487:1386891] Messages to insert 0
2016-01-26 15:53:26.337 OurApp[2487:1386891] Messages to update 1
2016-01-26 15:53:26.842 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2c531ca2130f004b69"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:26Z"/></message>
2016-01-26 15:53:27.047 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2c531ca2130f004b6a"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:27Z"/></message>
2016-01-26 15:53:27.766 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2c531ca2130f004b6b"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:27Z"/></message>
2016-01-26 15:53:27.769 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2d531ca2130f004b6c"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:27Z"/></message>
2016-01-26 15:53:27.770 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2d531ca2130f004b6d"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:27Z"/></message>
2016-01-26 15:53:27.997 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2d531ca2130f004b6e"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:28Z"/></message>
2016-01-26 15:53:28.135 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2d531ca2130f004b6f"><body>Hhhh</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816408</date_sent><dialog_id>56a4e1ca21ed9de98d007690</dialog_id><message_id>56a77a2d531ca2130f004b6f</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:28Z"/></message>
2016-01-26 15:53:28.177 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2d531ca2130f004b70"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:28Z"/></message>
2016-01-26 15:53:28.179 OurApp[2487:1386900] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5894dfe1b7090041c4"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a2d531ca2130f004b6f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:28.179 OurApp[2487:1386900] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5894dfe1b7090041c6"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a2d531ca2130f004b6f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:28.180 OurApp[2487:1386902] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:28.182 OurApp[2487:1386908] Dialogs to insert 0
2016-01-26 15:53:28.183 OurApp[2487:1386908] Dialogs to update 1
2016-01-26 15:53:28.184 OurApp[2487:1386908] Messages to insert 1
2016-01-26 15:53:28.184 OurApp[2487:1386908] Messages to update 0
2016-01-26 15:53:28.487 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:28.488 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:28:487 OurApp[2487:1403] Unexpected h value from ack: lastH=19, newH=21, numPendingStanzas=0
2016-01-26 15:53:28.492 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:53:28.493 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:53:28.794 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2e531ca2130f004b74"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:28Z"/></message>
2016-01-26 15:53:28.914 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2e531ca2130f004b75"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:28Z"/></message>
2016-01-26 15:53:29.120 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2e531ca2130f004b76"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:29Z"/></message>
2016-01-26 15:53:29.312 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2e531ca2130f004b77"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:29Z"/></message>
2016-01-26 15:53:29.403 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2f531ca2130f004b78"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:29Z"/></message>
2016-01-26 15:53:29.540 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2f531ca2130f004b79"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:29Z"/></message>
2016-01-26 15:53:30.039 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2f531ca2130f004b7a"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:30Z"/></message>
2016-01-26 15:53:30.242 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2f531ca2130f004b7c"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:30Z"/></message>
2016-01-26 15:53:30.243 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a2f531ca2130f004b7b"><body>Iiiii</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816410</date_sent><dialog_id>56a4e1ca21ed9de98d007690</dialog_id><message_id>56a77a2f531ca2130f004b7b</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:30Z"/></message>
2016-01-26 15:53:30.287 OurApp[2487:1386902] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5a94dfe1b7090041c8"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a2f531ca2130f004b7b"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:30.288 OurApp[2487:1386902] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5a94dfe1b7090041ca"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a2f531ca2130f004b7b"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:30.288 OurApp[2487:1386900] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:30.290 OurApp[2487:1386889] Dialogs to insert 0
2016-01-26 15:53:30.290 OurApp[2487:1386889] Dialogs to update 1
2016-01-26 15:53:30.292 OurApp[2487:1386889] Messages to insert 1
2016-01-26 15:53:30.292 OurApp[2487:1386889] Messages to update 0
2016-01-26 15:53:30:435 OurApp[2487:f03] Unexpected h value from ack: lastH=21, newH=23, numPendingStanzas=0
2016-01-26 15:53:30.435 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:30.436 OurApp[2487:1386900] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:30.440 OurApp[2487:1386900] Messages to insert 0
2016-01-26 15:53:30.441 OurApp[2487:1386900] Messages to update 1
2016-01-26 15:53:31.040 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a30531ca2130f004b80"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:31Z"/></message>
2016-01-26 15:53:31.246 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a30531ca2130f004b81"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:31Z"/></message>
2016-01-26 15:53:31.452 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a30531ca2130f004b82"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:31Z"/></message>
2016-01-26 15:53:31.656 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a31531ca2130f004b83"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:31Z"/></message>
2016-01-26 15:53:31.659 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a31531ca2130f004b84"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:31Z"/></message>
2016-01-26 15:53:31.758 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a31531ca2130f004b85"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:31Z"/></message>
2016-01-26 15:53:31.961 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a31531ca2130f004b86"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:32Z"/></message>
2016-01-26 15:53:32.474 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a32531ca2130f004b87"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:32Z"/></message>
2016-01-26 15:53:32.679 OurApp[2487:1386902] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a32531ca2130f004b88"><body>Jjjjjj</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816412</date_sent><dialog_id>56a4e1ca21ed9de98d007690</dialog_id><message_id>56a77a32531ca2130f004b88</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:32Z"/></message>
2016-01-26 15:53:32.723 OurApp[2487:1386889] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5c94dfe1b7090041cc"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a32531ca2130f004b88"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:32.723 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a32531ca2130f004b89"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:32Z"/></message>
2016-01-26 15:53:32.723 OurApp[2487:1386889] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5c94dfe1b7090041ce"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a32531ca2130f004b88"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:32.725 OurApp[2487:1386900] Dialogs to insert 0
2016-01-26 15:53:32.725 OurApp[2487:1386900] Dialogs to update 1
2016-01-26 15:53:32.725 OurApp[2487:1386889] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:32.728 OurApp[2487:1386900] Messages to insert 1
2016-01-26 15:53:32.728 OurApp[2487:1386900] Messages to update 0
2016-01-26 15:53:33.032 OurApp[2487:1386889] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:33.033 OurApp[2487:1386889] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:33:032 OurApp[2487:710b] Unexpected h value from ack: lastH=23, newH=25, numPendingStanzas=0
2016-01-26 15:53:33.038 OurApp[2487:1386908] Messages to insert 0
2016-01-26 15:53:33.038 OurApp[2487:1386908] Messages to update 1
2016-01-26 15:53:33.601 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a33531ca2130f004b8c"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:33Z"/></message>
2016-01-26 15:53:33.806 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a33531ca2130f004b8d"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:33Z"/></message>
2016-01-26 15:53:33.809 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a33531ca2130f004b8f"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:33Z"/></message>
2016-01-26 15:53:33.927 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a33531ca2130f004b90"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:33Z"/></message>
2016-01-26 15:53:34.049 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a33531ca2130f004b91"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:34Z"/></message>
2016-01-26 15:53:34.187 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a33531ca2130f004b92"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:34Z"/></message>
2016-01-26 15:53:34.564 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a34531ca2130f004b93"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:34Z"/></message>
2016-01-26 15:53:34.835 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a34531ca2130f004b94"><body>Kkkkk</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816414</date_sent><dialog_id>56a4e1ca21ed9de98d007690</dialog_id><message_id>56a77a34531ca2130f004b94</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:34Z"/></message>
2016-01-26 15:53:34.876 OurApp[2487:1386891] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5e94dfe1b7090041d0"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a34531ca2130f004b94"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:34.877 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a34531ca2130f004b95"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:34Z"/></message>
2016-01-26 15:53:34.880 OurApp[2487:1386891] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a5e94dfe1b7090041d2"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a34531ca2130f004b94"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:34.881 OurApp[2487:1386891] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:34.882 OurApp[2487:1386907] Dialogs to insert 0
2016-01-26 15:53:34.882 OurApp[2487:1386907] Dialogs to update 1
2016-01-26 15:53:34.883 OurApp[2487:1386907] Messages to insert 1
2016-01-26 15:53:34.883 OurApp[2487:1386907] Messages to update 0
2016-01-26 15:53:35:135 OurApp[2487:9e13] Unexpected h value from ack: lastH=25, newH=27, numPendingStanzas=0
2016-01-26 15:53:35.135 OurApp[2487:1386907] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:35.138 OurApp[2487:1386891] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:35.141 OurApp[2487:1386900] Messages to insert 0
2016-01-26 15:53:35.142 OurApp[2487:1386900] Messages to update 1
2016-01-26 15:53:35.751 OurApp[2487:1386908] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a35531ca2130f004b98"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:35Z"/></message>
2016-01-26 15:53:35.956 OurApp[2487:1386891] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a35531ca2130f004b99"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:35Z"/></message>
2016-01-26 15:53:36.160 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a35531ca2130f004b9b"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:36Z"/></message>
2016-01-26 15:53:36.365 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a35531ca2130f004b9c"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:36Z"/></message>
2016-01-26 15:53:36.570 OurApp[2487:1386907] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a35531ca2130f004b9d"><composing xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:36Z"/></message>
2016-01-26 15:53:36.981 OurApp[2487:1386900] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a36531ca2130f004b9e"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:37Z"/></message>
2016-01-26 15:53:37.185 OurApp[2487:1386914] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a36531ca2130f004b9f"><body>Llll</body><extraParams xmlns="jabber:client"><save_to_history>1</save_to_history><date_sent>1453816417</date_sent><dialog_id>56a4e1ca21ed9de98d007690</dialog_id><message_id>56a77a36531ca2130f004b9f</message_id></extraParams><markable xmlns="urn:xmpp:chat-markers:0"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:37Z"/></message>
2016-01-26 15:53:37.228 OurApp[2487:1386889] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a6194dfe1b7090041d4"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a36531ca2130f004b9f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:37.228 OurApp[2487:1386889] [ChatService] Message RCV: <message xmlns="jabber:client" type="groupchat" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/1475" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="56a77a36531ca2130f004ba0"><paused xmlns="http://jabber.org/protocol/chatstates"/><delay xmlns="urn:xmpp:delay" stamp="2016-01-26T13:53:37Z"/></message>
2016-01-26 15:53:37.230 OurApp[2487:1386891] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a6194dfe1b7090041d6"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a36531ca2130f004b9f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:53:37.232 OurApp[2487:1386900] Dialogs to insert 0
2016-01-26 15:53:37.233 OurApp[2487:1386900] Dialogs to update 1
2016-01-26 15:53:37.233 OurApp[2487:1386891] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:53:37.235 OurApp[2487:1386900] Messages to insert 1
2016-01-26 15:53:37.235 OurApp[2487:1386900] Messages to update 0
2016-01-26 15:53:37.596 OurApp[2487:1386891] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 0
2016-01-26 15:53:37.596 OurApp[2487:1386891] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:53:37:595 OurApp[2487:710b] Unexpected h value from ack: lastH=27, newH=29, numPendingStanzas=0
2016-01-26 15:53:37.603 OurApp[2487:1386907] Messages to insert 0
2016-01-26 15:53:37.603 OurApp[2487:1386907] Messages to update 1
2016-01-26 15:53:39.643 OurApp[2487:1386907] [ChatService] Doing Chat disconnect...
2016-01-26 15:53:39.687 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" type="unavailable"/>
2016-01-26 15:53:39.687 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" type="unavailable"/>
2016-01-26 15:53:39.688 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" type="unavailable"/>
2016-01-26 15:53:39.688 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" type="unavailable"/>
2016-01-26 15:53:39.688 OurApp[2487:1386907] [ChatService] Presence SNT: <presence type="unavailable"/>
2016-01-26 15:53:39.690 OurApp[2487:1386907] [ChatService] Did disconnect
2016-01-26 15:54:26.330 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:52:59 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
2016-01-26 15:54:26.330 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:54:26.330 OurApp[2487:1386841] CONNECTED: NO
2016-01-26 15:54:26.330 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:54:26.330 OurApp[2487:1386841] Connected :NO
2016-01-26 15:54:26.333 OurApp[2487:1386907] [ChatService] Connecting to Chat, host: ourapp.quickblox.com.quickblox.com, user JID: 965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB
2016-01-26 15:54:26.359 OurApp[2487:1386841] iRate did not prompt for rating because the app was first used less than 10 days ago
2016-01-26 15:54:26.359 OurApp[2487:1387333] iRate is checking http://itunes.apple.com/US/lookup?id=435463622 to retrieve the App Store details...
2016-01-26 15:54:26.721 OurApp[2487:1387311] [ChatService] Stream did connect, supportsStartTLS: 1
2016-01-26 15:54:26.722 OurApp[2487:1387311] [ChatService] Trying TLS...
2016-01-26 15:54:27.995 OurApp[2487:1387311] [ChatService] Did authenticate, user: 965
2016-01-26 15:54:27.998 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:52:59 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
password:****
2016-01-26 15:54:28.000 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:54:28.000 OurApp[2487:1386841] CONNECTED: YES
2016-01-26 15:54:28.000 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:54:28.002 OurApp[2487:1387309] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Dialog.json?limit=50&updated_at%5Bgt%5D=1453816385.88291
2016-01-26 15:54:28.003 OurApp[2487:1387309] [QBCore] Request method: GET
2016-01-26 15:54:28:003 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:54:28.004 OurApp[2487:1387309] [QBCore] Request parameters:{
limit = 50;
"updated_at[gt]" = "1453816385.88291";
}
2016-01-26 15:54:28.004 OurApp[2487:1387309] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:54:28.006 OurApp[2487:1386841] USER
[QBUUser]:
ID:965
created at:2016-01-21 14:09:29 +0000
updated at:2016-01-26 13:52:59 +0000
externalUserID:0
blobID:0
facebookID:(null)
twitterID:(null)
twitterDigitsID:(null)
full name:Nahla Mortada
email:nahla.mortada@technivance.com
login:******
phone:******
tags:(null)
lastRequestAt:2016-01-26 13:52:26 +0000
customData:(null)
website:(null)
password:****
2016-01-26 15:54:28:005 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:54:28.006 OurApp[2487:1386841] AUTHORIZED: YES
2016-01-26 15:54:28.008 OurApp[2487:1386841] CONNECTED: YES
2016-01-26 15:54:28.010 OurApp[2487:1386841] CONNECTED to the REST API: YES
2016-01-26 15:54:28.011 OurApp[2487:1387311] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Dialog.json?limit=50&updated_at%5Bgt%5D=1453816385.88291
2016-01-26 15:54:28.011 OurApp[2487:1387311] [QBCore] Request method: GET
2016-01-26 15:54:28.011 OurApp[2487:1387311] [QBCore] Request parameters:{
limit = 50;
"updated_at[gt]" = "1453816385.88291";
}
2016-01-26 15:54:28.026 OurApp[2487:1387311] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:54:28.026 OurApp[2487:1387311] [ChatService] Presence SNT: <presence/>
2016-01-26 15:54:28.027 OurApp[2487:1387311] [ChatService] IQ SNT: <iq type="get" id="FFB2C897-86AD-406F-8380-CF690166EB77"><query xmlns="jabber:iq:roster"/></iq>
2016-01-26 15:54:28.028 OurApp[2487:1387311] [ChatService] Presence SNT: <presence/>
2016-01-26 15:54:28.029 OurApp[2487:1387311] [ChatService] Presence SNT: <presence to="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:54:28.029 OurApp[2487:1387311] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:54:28.095 OurApp[2487:1387309] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" to="965-5@ourapp.quickblox.com.quickblox.com"/>
2016-01-26 15:54:28.160 OurApp[2487:1386907] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:54:28 GMT";
Etag = "\"711b9a0eac9395edec47b42840bfab69\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = e17132378cfe162e0f94d8d36c4c057f;
"x-runtime" = "0.032284";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:54:28.166 OurApp[2487:1386914] [QBCore] Response object: {
items = (
{
"_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-24T14:38:02Z";
data = {
"class_name" = Advertisement;
identifier = 5506180;
};
"last_message" = Pppppppp;
"last_message_date_sent" = 1453816437;
"last_message_user_id" = 1475;
name = printer;
"occupants_ids" = (
965,
1475
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 10;
"updated_at" = "2016-01-26T13:53:57Z";
"user_id" = 965;
"xmpp_room_jid" = "5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com";
},
{
"_id" = 56a7569f21ed9dd9ec00010e;
"created_at" = "2016-01-26T11:21:03Z";
data = {
"class_name" = Advertisement;
identifier = 5506176;
};
"last_message" = Fff;
"last_message_date_sent" = 1453816400;
"last_message_user_id" = 1475;
name = text;
"occupants_ids" = (
965,
1475
);
photo = "http://d3cxve53lbqhxv.cloudfront.net/images/user_adv/1453385981764738859.jpg";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 6;
"updated_at" = "2016-01-26T13:53:20Z";
"user_id" = 1475;
"xmpp_room_jid" = "5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com";
}
);
limit = 50;
skip = 0;
"total_entries" = 2;
}
2016-01-26 15:54:28:167 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:54:28.168 OurApp[2487:1386914] [QBCore] Response object: {
items = (
{
"_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-24T14:38:02Z";
data = {
"class_name" = Advertisement;
identifier = 5506180;
};
"last_message" = Pppppppp;
"last_message_date_sent" = 1453816437;
"last_message_user_id" = 1475;
name = printer;
"occupants_ids" = (
965,
1475
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 10;
"updated_at" = "2016-01-26T13:53:57Z";
"user_id" = 965;
"xmpp_room_jid" = "5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com";
},
{
"_id" = 56a7569f21ed9dd9ec00010e;
"created_at" = "2016-01-26T11:21:03Z";
data = {
"class_name" = Advertisement;
identifier = 5506176;
};
"last_message" = Fff;
"last_message_date_sent" = 1453816400;
"last_message_user_id" = 1475;
name = text;
"occupants_ids" = (
965,
1475
);
photo = "http://d3cxve53lbqhxv.cloudfront.net/images/user_adv/1453385981764738859.jpg";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 6;
"updated_at" = "2016-01-26T13:53:20Z";
"user_id" = 1475;
"xmpp_room_jid" = "5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com";
}
);
limit = 50;
skip = 0;
"total_entries" = 2;
}
2016-01-26 15:54:28:168 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:54:28.201 OurApp[2487:1386907] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:54:28 GMT";
Etag = "\"711b9a0eac9395edec47b42840bfab69\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = 5880d6123a4ece0459de27e77305144a;
"x-runtime" = "0.031894";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:54:28.202 OurApp[2487:1386907] [QBCore] Response object: {
items = (
{
"_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-24T14:38:02Z";
data = {
"class_name" = Advertisement;
identifier = 5506180;
};
"last_message" = Pppppppp;
"last_message_date_sent" = 1453816437;
"last_message_user_id" = 1475;
name = printer;
"occupants_ids" = (
965,
1475
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 10;
"updated_at" = "2016-01-26T13:53:57Z";
"user_id" = 965;
"xmpp_room_jid" = "5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com";
},
{
"_id" = 56a7569f21ed9dd9ec00010e;
"created_at" = "2016-01-26T11:21:03Z";
data = {
"class_name" = Advertisement;
identifier = 5506176;
};
"last_message" = Fff;
"last_message_date_sent" = 1453816400;
"last_message_user_id" = 1475;
name = text;
"occupants_ids" = (
965,
1475
);
photo = "http://d3cxve53lbqhxv.cloudfront.net/images/user_adv/1453385981764738859.jpg";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 6;
"updated_at" = "2016-01-26T13:53:20Z";
"user_id" = 1475;
"xmpp_room_jid" = "5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com";
}
);
limit = 50;
skip = 0;
"total_entries" = 2;
}
2016-01-26 15:54:28:200 OurApp[2487:b07] QBChat/XEP-0045/ joinRoom
2016-01-26 15:54:28.215 OurApp[2487:1386907] [QBCore] Response object: {
items = (
{
"_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-24T14:38:02Z";
data = {
"class_name" = Advertisement;
identifier = 5506180;
};
"last_message" = Pppppppp;
"last_message_date_sent" = 1453816437;
"last_message_user_id" = 1475;
name = printer;
"occupants_ids" = (
965,
1475
);
photo = "<null>";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 10;
"updated_at" = "2016-01-26T13:53:57Z";
"user_id" = 965;
"xmpp_room_jid" = "5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com";
},
{
"_id" = 56a7569f21ed9dd9ec00010e;
"created_at" = "2016-01-26T11:21:03Z";
data = {
"class_name" = Advertisement;
identifier = 5506176;
};
"last_message" = Fff;
"last_message_date_sent" = 1453816400;
"last_message_user_id" = 1475;
name = text;
"occupants_ids" = (
965,
1475
);
photo = "http://d3cxve53lbqhxv.cloudfront.net/images/user_adv/1453385981764738859.jpg";
"silent_ids" = (
);
type = 2;
"unread_messages_count" = 6;
"updated_at" = "2016-01-26T13:53:20Z";
"user_id" = 1475;
"xmpp_room_jid" = "5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com";
}
);
limit = 50;
skip = 0;
"total_entries" = 2;
}
2016-01-26 15:54:28.216 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:54:28.217 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:54:28.217 OurApp[2487:1387310] Dialogs to insert 0
2016-01-26 15:54:28.217 OurApp[2487:1387310] Dialogs to update 1
2016-01-26 15:54:28.218 OurApp[2487:1386907] [ChatService] StreamManagement: enabled= <enabled xmlns="urn:xmpp:sm:3"/>
2016-01-26 15:54:28.218 OurApp[2487:1386907] [ChatService] IQ RCV: <iq xmlns="jabber:client" type="result" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" id="FFB2C897-86AD-406F-8380-CF690166EB77"><query xmlns="jabber:iq:roster"/></iq>
2016-01-26 15:54:28.218 OurApp[2487:1386907] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 3
2016-01-26 15:54:28.219 OurApp[2487:1386907] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" to="965-5@ourapp.quickblox.com.quickblox.com"/>
2016-01-26 15:54:28.220 OurApp[2487:1386907] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:28.220 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965"><x xmlns="http://jabber.org/protocol/muc"><history maxstanzas="0"/></x></presence>
2016-01-26 15:54:28.220 OurApp[2487:1386907] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:28.220 OurApp[2487:1386907] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:28.220 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" type="unavailable"/>
2016-01-26 15:54:28.222 OurApp[2487:1387310] Dialogs to insert 0
2016-01-26 15:54:28.222 OurApp[2487:1387310] Dialogs to update 0
2016-01-26 15:54:28.275 OurApp[2487:1387353] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:28.277 OurApp[2487:1386907] [ChatService] Presence SNT: <presence to="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" type="unavailable"/>
2016-01-26 15:54:28.365 OurApp[2487:1387310] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:28.366 OurApp[2487:1387310] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:28.454 OurApp[2487:1387310] [ChatService] Presence RCV: <presence xmlns="jabber:client" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:28.455 OurApp[2487:1387311] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 3
2016-01-26 15:54:28.456 OurApp[2487:1387311] [ChatService] Presence RCV: <presence xmlns="jabber:client" type="unavailable" from="5_56a4e1ca21ed9de98d007690@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:28.543 OurApp[2487:1387310] [ChatService] Presence RCV: <presence xmlns="jabber:client" type="unavailable" from="5_56a7569f21ed9dd9ec00010e@muc.ourapp.quickblox.com.quickblox.com/965" to="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB"><x xmlns="http://jabber.org/protocol/muc#user"><item role="moderator" nick="965" jid="965-5@ourapp.quickblox.com.quickblox.com/0A65D09C-6E97-4F9C-B534-0ED058B32CAB" affiliation="admin"/><status code="110"/></x></presence>
2016-01-26 15:54:34.821 OurApp[2487:1386841] Multi MESSAGE ADDED
2016-01-26 15:54:34.948 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.952 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.965 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.967 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.977 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.981 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.992 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:34.996 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.006 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.008 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.016 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.019 OurApp[2487:1386914] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Message.json?chat_dialog_id=56a4e1ca21ed9de98d007690&date_sent%5Blt%5D=1453816405&limit=100&sort_desc=date_sent
2016-01-26 15:54:35.019 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.020 OurApp[2487:1386914] [QBCore] Request method: GET
2016-01-26 15:54:35.021 OurApp[2487:1386914] [QBCore] Request parameters:{
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"date_sent[lt]" = 1453816405;
limit = 100;
"sort_desc" = "date_sent";
}
2016-01-26 15:54:35.021 OurApp[2487:1386914] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:54:35.118 OurApp[2487:1386914] [QBCore] Request URL:https://ourapp.quickblox.com.quickblox.com/chat/Message.json?chat_dialog_id=56a4e1ca21ed9de98d007690&date_sent%5Bgt%5D=1453816417&limit=100&sort_desc=date_sent
2016-01-26 15:54:35.118 OurApp[2487:1386914] [QBCore] Request method: GET
2016-01-26 15:54:35.118 OurApp[2487:1386914] [QBCore] Request parameters:{
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"date_sent[gt]" = 1453816417;
limit = 100;
"sort_desc" = "date_sent";
}
2016-01-26 15:54:35.118 OurApp[2487:1386914] [QBCore] Request headers: {
"Content-Type" = "application/json";
"QB-OS" = "iOS 9.2";
"QB-SDK" = "iOS 2.6.3";
"QB-Token" = ***************************;
"QuickBlox-REST-API-Version" = "0.1.1";
}
2016-01-26 15:54:35.118 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041e4"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2b531ca2130f004b64"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.129 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041e5"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2b531ca2130f004b64"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.130 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041e6"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2d531ca2130f004b6f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.130 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041e7"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2d531ca2130f004b6f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.147 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041e8"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2f531ca2130f004b7b"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.148 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041e9"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2f531ca2130f004b7b"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.148 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041ea"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a32531ca2130f004b88"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.148 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9a94dfe1b7090041eb"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a32531ca2130f004b88"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.148 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b7090041ec"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a34531ca2130f004b94"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.148 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b7090041ed"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a34531ca2130f004b94"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.149 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b7090041ee"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a36531ca2130f004b9f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.149 OurApp[2487:1386914] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b7090041ef"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a36531ca2130f004b9f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.149 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.150 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.151 OurApp[2487:1386914] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.195 OurApp[2487:1386914] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:54:35 GMT";
Etag = "\"38b31145b19a80d2fd3388526ef9b45b\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = e76784b59363677155b9eb86538b5ab5;
"x-runtime" = "0.027347";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:54:35.198 OurApp[2487:1386914] [QBCore] Response object: {
items = (
{
"_id" = 56a778e5531ca2130f004914;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:47:59Z";
"date_sent" = 1453816079;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Gfhffgfhhg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:48:51Z";
},
{
"_id" = 56a778e1531ca2130f004903;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:47:55Z";
"date_sent" = 1453816075;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Hgthgg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:48:51Z";
},
{
"_id" = 56a778dd531ca2130f0048f6;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:47:52Z";
"date_sent" = 1453816072;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Ghdfg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:48:51Z";
},
{
"_id" = 56a777a7531ca2130f0043a9;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:42:41Z";
"date_sent" = 1453815761;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Ggg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:45:12Z";
},
{
"_id" = 56a769a40a7695ea0e00475e;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T12:42:54Z";
"date_sent" = 1453812174;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = "<><><<";
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:45:10Z";
},
{
"_id" = 56a769990a7695ea0e004751;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T12:42:43Z";
"date_sent" = 1453812163;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = "&>><>";
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:45:10Z";
},
{
"_id" = 56a4e1cb4adfbd28050041a8;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-24T14:38:07Z";
"date_sent" = 1453646283;
"delivered_ids" = (
965,
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Hello;
read = 0;
"read_ids" = (
965,
1475
);
"recipient_id" = "<null>";
"sender_id" = 965;
"updated_at" = "2016-01-26T12:42:10Z";
}
);
limit = 100;
skip = 0;
}
2016-01-26 15:54:35.200 OurApp[2487:1386914] [QBCore] Response object: {
items = (
{
"_id" = 56a778e5531ca2130f004914;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:47:59Z";
"date_sent" = 1453816079;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Gfhffgfhhg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:48:51Z";
},
{
"_id" = 56a778e1531ca2130f004903;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:47:55Z";
"date_sent" = 1453816075;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Hgthgg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:48:51Z";
},
{
"_id" = 56a778dd531ca2130f0048f6;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:47:52Z";
"date_sent" = 1453816072;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Ghdfg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:48:51Z";
},
{
"_id" = 56a777a7531ca2130f0043a9;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:42:41Z";
"date_sent" = 1453815761;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Ggg;
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:45:12Z";
},
{
"_id" = 56a769a40a7695ea0e00475e;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T12:42:54Z";
"date_sent" = 1453812174;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = "<><><<";
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:45:10Z";
},
{
"_id" = 56a769990a7695ea0e004751;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T12:42:43Z";
"date_sent" = 1453812163;
"delivered_ids" = (
1475,
965
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = "&>><>";
read = 0;
"read_ids" = (
1475,
965
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:45:10Z";
},
{
"_id" = 56a4e1cb4adfbd28050041a8;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-24T14:38:07Z";
"date_sent" = 1453646283;
"delivered_ids" = (
965,
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Hello;
read = 0;
"read_ids" = (
965,
1475
);
"recipient_id" = "<null>";
"sender_id" = 965;
"updated_at" = "2016-01-26T12:42:10Z";
}
);
limit = 100;
skip = 0;
}
2016-01-26 15:54:35.216 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.219 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.220 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.221 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.222 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.223 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.225 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.226 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.227 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.228 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.230 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.231 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.233 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.234 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.239 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.242 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.247 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.250 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.257 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.260 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.266 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.268 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.273 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.275 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.313 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b7090041fe"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2b531ca2130f004b64"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.313 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b7090041ff"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2b531ca2130f004b64"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.351 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004200"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2d531ca2130f004b6f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.351 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004201"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2d531ca2130f004b6f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.351 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004202"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2f531ca2130f004b7b"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.352 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004203"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a2f531ca2130f004b7b"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.352 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004204"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a32531ca2130f004b88"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.354 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004205"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a32531ca2130f004b88"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.354 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004206"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a34531ca2130f004b94"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.354 OurApp[2487:1387332] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004207"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a34531ca2130f004b94"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.359 OurApp[2487:1387332] [QBCore] Response headers: {
"Access-Control-Allow-Origin" = "*";
"Cache-Control" = "max-age=0, private, must-revalidate";
"Content-Type" = "application/json; charset=utf-8";
Date = "Tue, 26 Jan 2016 13:54:35 GMT";
Etag = "\"fb92f62b9c1d976d2e5cc5fa578f0bd3\"";
Server = "nginx/1.8.0";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=15768000;";
"qb-token-expirationdate" = "2016-01-26 15:52:58 +0000";
"quickblox-rest-api-version" = "0.1.1";
"x-rack-cache" = miss;
"x-request-id" = a4eae11e4f53503a02e8ab407e36a42a;
"x-runtime" = "0.021139";
"x-ua-compatible" = "IE=Edge,chrome=1";
}
2016-01-26 15:54:35.359 OurApp[2487:1387332] [QBCore] Response object: {
items = (
{
"_id" = 56a77a4a531ca2130f004bcf;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:57Z";
"date_sent" = 1453816437;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Pppppppp;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:57Z";
},
{
"_id" = 56a77a48531ca2130f004bc1;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:54Z";
"date_sent" = 1453816434;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Ooooo;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:54Z";
},
{
"_id" = 56a77a43531ca2130f004bb6;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:49Z";
"date_sent" = 1453816429;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Nnnnnn;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:49Z";
},
{
"_id" = 56a77a3b531ca2130f004baa;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:41Z";
"date_sent" = 1453816421;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Mmmm;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:41Z";
}
);
limit = 100;
skip = 0;
}
2016-01-26 15:54:35.361 OurApp[2487:1387332] [QBCore] Response object: {
items = (
{
"_id" = 56a77a4a531ca2130f004bcf;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:57Z";
"date_sent" = 1453816437;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Pppppppp;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:57Z";
},
{
"_id" = 56a77a48531ca2130f004bc1;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:54Z";
"date_sent" = 1453816434;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Ooooo;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:54Z";
},
{
"_id" = 56a77a43531ca2130f004bb6;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:49Z";
"date_sent" = 1453816429;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Nnnnnn;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:49Z";
},
{
"_id" = 56a77a3b531ca2130f004baa;
attachments = (
);
"chat_dialog_id" = 56a4e1ca21ed9de98d007690;
"created_at" = "2016-01-26T13:53:41Z";
"date_sent" = 1453816421;
"delivered_ids" = (
1475
);
"dialog_id" = 56a4e1ca21ed9de98d007690;
message = Mmmm;
read = 0;
"read_ids" = (
1475
);
"recipient_id" = "<null>";
"sender_id" = 1475;
"updated_at" = "2016-01-26T13:53:41Z";
}
);
limit = 100;
skip = 0;
}
2016-01-26 15:54:35.368 OurApp[2487:1387334] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.377 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.423 OurApp[2487:1387352] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b70900420d"><received xmlns="urn:xmpp:chat-markers:0" id="56a77a3b531ca2130f004baa"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.439 OurApp[2487:1387087] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.451 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.461 OurApp[2487:1387087] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004220"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a36531ca2130f004b9f"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.465 OurApp[2487:1387332] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.472 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.472 OurApp[2487:1386914] Messages to update 6
2016-01-26 15:54:35.473 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.474 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.480 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.483 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.490 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.490 OurApp[2487:1387331] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004227"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a3b531ca2130f004baa"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.506 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.506 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.508 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.515 OurApp[2487:1387331] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b709004229"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a43531ca2130f004bb6"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.516 OurApp[2487:1387087] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 14
2016-01-26 15:54:35.538 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.541 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.548 OurApp[2487:1387334] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.548 OurApp[2487:1387334] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.549 OurApp[2487:1386914] Messages to insert 4
2016-01-26 15:54:35.549 OurApp[2487:1386914] Messages to update 0
2016-01-26 15:54:35.554 OurApp[2487:1387087] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b70900422b"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a48531ca2130f004bc1"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.554 OurApp[2487:1387087] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b70900422c"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a48531ca2130f004bc1"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.558 OurApp[2487:1387310] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.559 OurApp[2487:1387334] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.561 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.561 OurApp[2487:1386914] Dialogs to update 1
2016-01-26 15:54:35.564 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.564 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.566 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.566 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.569 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.569 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.571 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.571 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.575 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.576 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.576 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.577 OurApp[2487:1386841] current User = 965
2016-01-26 15:54:35.583 OurApp[2487:1387310] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b70900422d"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a4a531ca2130f004bcf"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.583 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.583 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.584 OurApp[2487:1387310] [ChatService] Message SNT: <message to="1475-5@ourapp.quickblox.com.quickblox.com" type="chat" id="56a77a9b94dfe1b70900422e"><displayed xmlns="urn:xmpp:chat-markers:0" id="56a77a4a531ca2130f004bcf"/><extraParams xmlns="jabber:client"><dialog_id>56a4e1ca21ed9de98d007690</dialog_id></extraParams></message>
2016-01-26 15:54:35.585 OurApp[2487:1387332] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.586 OurApp[2487:1387331] [ChatService] StreamManagement: did request acknowledgment
2016-01-26 15:54:35.586 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.586 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.588 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.588 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.589 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.589 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.590 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.590 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.591 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.591 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.593 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.593 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.594 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.594 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.605 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.605 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.606 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.606 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.608 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.608 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.609 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.609 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.611 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.611 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.612 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.613 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.614 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.614 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.615 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.615 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.616 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.616 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.618 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.618 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.619 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.619 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.620 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:35.620 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:35.627 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.627 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.636 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.636 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.637 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.637 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.638 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.638 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.639 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.639 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.640 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.640 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.641 OurApp[2487:1386841] Logging only once for UICollectionViewFlowLayout cache mismatched frame
2016-01-26 15:54:35.641 OurApp[2487:1386841] UICollectionViewFlowLayout has cached frame mismatch for index path <NSIndexPath: 0xc000000000600016> {length = 2, path = 0 - 3} - cached value: {{4, 175.5}, {367, 58}}; expected value: {{4, 175}, {367, 58}}
2016-01-26 15:54:35.641 OurApp[2487:1386841] This is likely occurring because the flow layout subclass JSQMessagesCollectionViewFlowLayout is modifying attributes returned by UICollectionViewFlowLayout without copying them
2016-01-26 15:54:35.642 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.642 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.646 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.646 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.647 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.647 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.648 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.649 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.649 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.649 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:35.650 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:35.651 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:36.080 OurApp[2487:1387309] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 10
2016-01-26 15:54:36.110 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.111 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.114 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.114 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.116 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.116 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.117 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.117 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.119 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.119 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.120 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.120 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.122 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.122 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.125 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.126 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.128 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.128 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.130 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:36.130 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:36.131 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.131 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.133 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.133 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.134 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.134 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.135 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.135 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.136 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.136 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.137 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.137 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.138 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.138 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.139 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.139 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.140 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.140 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.142 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:36.142 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:36.786 OurApp[2487:1387309] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 14
2016-01-26 15:54:36.815 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.815 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.818 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.818 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.821 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.821 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.824 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.824 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.827 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.827 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.829 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.829 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.830 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.831 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.832 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.833 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.834 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.834 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.836 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.836 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.838 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.838 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.840 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.840 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.842 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.843 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.844 OurApp[2487:1387352] Messages to insert 0
2016-01-26 15:54:36.844 OurApp[2487:1387352] Messages to update 1
2016-01-26 15:54:36.846 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.846 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.847 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.847 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.848 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.848 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.849 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.849 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.850 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.850 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.852 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.852 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.853 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.853 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.854 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.854 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.855 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.855 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:36.856 OurApp[2487:1387352] Dialogs to insert 0
2016-01-26 15:54:36.856 OurApp[2487:1387352] Dialogs to update 0
2016-01-26 15:54:37.253 OurApp[2487:1386914] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:54:37.261 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:37.262 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:37.265 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:37.265 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:37.268 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:37.268 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:37.271 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:37.271 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:37.416 OurApp[2487:1387353] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:54:37.424 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:37.424 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:37.428 OurApp[2487:1386914] Messages to insert 0
2016-01-26 15:54:37.428 OurApp[2487:1386914] Messages to update 1
2016-01-26 15:54:37.431 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:37.432 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:37.434 OurApp[2487:1386914] Dialogs to insert 0
2016-01-26 15:54:37.434 OurApp[2487:1386914] Dialogs to update 0
2016-01-26 15:54:37.563 OurApp[2487:1386914] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:54:37.571 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:37.571 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:37.575 OurApp[2487:1387309] Messages to insert 0
2016-01-26 15:54:37.576 OurApp[2487:1387309] Messages to update 1
2016-01-26 15:54:37.579 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:37.579 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:37.582 OurApp[2487:1387309] Dialogs to insert 0
2016-01-26 15:54:37.582 OurApp[2487:1387309] Dialogs to update 0
2016-01-26 15:54:38.113 OurApp[2487:1387353] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:54:38.123 OurApp[2487:1387353] Messages to insert 0
2016-01-26 15:54:38.123 OurApp[2487:1387353] Messages to update 1
2016-01-26 15:54:38.127 OurApp[2487:1387353] Messages to insert 0
2016-01-26 15:54:38.127 OurApp[2487:1387353] Messages to update 1
2016-01-26 15:54:38.130 OurApp[2487:1387353] Dialogs to insert 0
2016-01-26 15:54:38.130 OurApp[2487:1387353] Dialogs to update 0
2016-01-26 15:54:38.132 OurApp[2487:1387353] Dialogs to insert 0
2016-01-26 15:54:38.133 OurApp[2487:1387353] Dialogs to update 0
2016-01-26 15:54:42.596 OurApp[2487:1387353] [ChatService] StreamManagement: did receive acknowledgments for stanza ids count: 2
2016-01-26 15:54:42.678 OurApp[2487:1387353] Messages to insert 0
2016-01-26 15:54:42.678 OurApp[2487:1387353] Messages to update 1
2016-01-26 15:54:43.446 OurApp[2487:1387353] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:43.451 OurApp[2487:1387353] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:43.584 OurApp[2487:1387332] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:43.720 OurApp[2487:1387353] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:43.836 OurApp[2487:1387353] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:43.971 OurApp[2487:1387332] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:44.698 OurApp[2487:1387332] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
2016-01-26 15:54:44.729 OurApp[2487:1386841] Failed to send message with error: Error Domain=com.quickblox.chat Code=-1001 "(null)" UserInfo={NSLocalizedRecoverySuggestion=You are not joined to the dialog.}
2016-01-26 15:54:44.733 OurApp[2487:1387309] -[QBChatDialog isAlreadyJoined] -> You have to join to room to use Chat API!
Are you not able to send messages to a specific dialog or to every group dialog? Are you joining to all group dialogs?
No for any dialog. and hint it occurs randomly. I can tell most probably when go to background for long time.
Please provide your endpoints settings to our enterprise support, we will debug it and see if there are any problems on our server side.
I already did that. seems like the cannot catch it as it occur randomly!
@nahlamortadatechni We were able to catch it and currently working on fix.
Getting below error when I was joined to a group. Later even if I wants to join the group getting Cannot create/join room when already creating/joining/joined error message.
Presence SNT:
Hi @smadupu please create a separate issue and attach full logs, from app start till this error.
I fail to join the group chat I was invited in (by setting me as an occupant with another account).
I receive the error message: Cannot create/join room when already creating/joining/join
When I try to send a message in this chat I receive the following messages in logs (since I'm not joined to the room):
However I can not join the dialog for some reason.
Any help what I'm doing wrong?