how to create group and group chat with xmpp in ios
--
You received this message because you are subscribed to the Google Groups "XMPPFramework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/xmppframework/-/FbAq_oq8Dv8J.
For more options, visit https://groups.google.com/groups/opt_out.
XMPPRoomCoreDataStorage *rosterstorage =[[XMPPRoomCoreDataStorage alloc] init];
XMPPRoom *xmppRoom = [[XMPPRoom alloc] initWithRoomStorage:rosterstorage jid:[XMPPJID jidWithString:@"test@conference-kiran-desktop"] dispatchQueue:dispatch_get_main_queue()];
[xmppRoom activate:[[self appDelegate]xmppStream]];
[xmppRoom joinRoomUsingNickname:@"Dev iphone" history:nil];
[[[self appDelegate] xmppStream] addDelegate:self delegateQueue:dispatch_get_main_queue()];
[xmppRoom addDelegate:self delegateQueue:dispatch_get_main_queue()];
}
After this
- (void)xmppRoomDidJoin:(XMPPRoom *)sender
{ configure your group
using below code...
NSLog(@"[XMPPRoom] sendInstantRoomConfig:");
NSString *groupName=[result stringByAppendingString:kChatHost];
NSXMLElement *iq = [NSXMLElement elementWithName:@"iq"];
[iq addAttributeWithName:@"id" stringValue:[NSString stringWithFormat:@"sdsdsd-kk%@",groupName]];
[iq addAttributeWithName:@"to" stringValue:groupName];
[iq addAttributeWithName:@"type" stringValue:@"set"];
NSXMLElement *query = [NSXMLElement elementWithName:@"query" xmlns:XMPPMUCOwnerNamespaceName];
NSXMLElement *xelem = [NSXMLElement elementWithName:@"x" xmlns:@"jabber:x:data"];
[xelem addAttributeWithName:@"type" stringValue:@"submit"];
[query addChild:xelem];
[iq addChild:query];
[[[self appDelegate] xmppStream] sendElement:iq];
--
You received this message because you are subscribed to the Google Groups "XMPPFramework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/a9bf3b73-2142-457b-b5a9-8da1c35da4fa%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/CA%2BZLPczGDTkawg6%2BcjBRZzp3SUPDPgzsENCh0aXiHbfvbT32Dg%40mail.gmail.com.
- (void)handlePresence:(XMPPPresence *)presence room:(XMPPRoom *)room;
- (void)handleIncomingMessage:(XMPPMessage *)message room:(XMPPRoom *)room;
- (void)handleOutgoingMessage:(XMPPMessage *)message room:(XMPPRoom *)room;
??
--
You received this message because you are subscribed to the Google Groups "XMPPFramework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/cd458058-0f98-4d0f-8b68-6976fb63bd85%40googlegroups.com.
Check for the forum you there is a code already explained by some one I saw a month ago.
On Mon, Sep 16, 2013 at 12:16 PM, Vishal Singh <vishal.si...@gmail.com> wrote:
--
You received this message because you are subscribed to the Google Groups "XMPPFramework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/cd458058-0f98-4d0f-8b68-6976fb63bd85%40googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "XMPPFramework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/xmppframework/xBqSeM6uuz8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/CA%2BZLPczAHLnKC89saupsPsn44tm_wEpzkZTiwNpCmLg7Dmjkdw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/CAFbD%3Dz7dnKfHRGJEX-1%3DHHzvwGiArAqSYw2CebynCdEDovH_5w%40mail.gmail.com.
I meant the googlgroups forum itself in xmppframework.. Search here itself.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/CAFbD%3Dz7dnKfHRGJEX-1%3DHHzvwGiArAqSYw2CebynCdEDovH_5w%40mail.gmail.com.
--
You received this message because you are subscribed to a topic in the Google Groups "XMPPFramework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/xmppframework/xBqSeM6uuz8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/CA%2BZLPcyYZ512Lq0TB-2WBERZyrufktCXDvuCS1YBs0xS-bQ9rA%40mail.gmail.com.
I need to add chat option into my app, where a person who is signed in our app can chat with another signed In person. I have searched alots in Google...then i have got some frameworks (like XMPP/Jabber Client and Quick Blox etc. ) for chatter box. After reading lot of tutorials, I have got that XMPP is more efficient way for chat things, if possible can you please suggest me any sample code and add participant friend to invite for multiple friend in for group chat application using XMPP?
Any guide or any help would be highly appreciated.
I am not getting the correct approach. will u please share ur code with me?
Please help me.
Hopping for positive reply.
Thank You,
Arimardan
EmailId: arimard...@virinchisoftware.com
A free and open source instant messaging client for iOS based on
the XMPPFramework.
https://mongooseim.readthedocs.io/en/latest/open-extensions/muc_light/
Implement MUC Light on server and Client side for this:https://mongooseim.readthedocs.io/en/latest/open-extensions/muc_light/
--
You received this message because you are subscribed to a topic in the Google Groups "XMPPFramework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/xmppframework/xBqSeM6uuz8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to xmppframework+unsubscribe@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/xmppframework/5ffa9236-3d89-4a42-aa7d-62d1dfe5c4e6%40googlegroups.com.
will you provide ios programming tutorial for me.thank you.
On Mon, Jun 12, 2017 at 2:20 PM, Vicky Dhas <vick...@gmail.com> wrote:
Implement MUC Light on server and Client side for this:https://mongooseim.readthedocs.io/en/latest/open-extensions/muc_light/
--
You received this message because you are subscribed to a topic in the Google Groups "XMPPFramework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/xmppframework/xBqSeM6uuz8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to xmppframewor...@googlegroups.com.
To post to this group, send email to xmppfr...@googlegroups.com.