Closed GoogleCodeExporter closed 8 years ago
I can run it!
XMPPConnection mConnection = new XMPPConnection(config);
mConnection.connect();
mConnection.login(login, password, resource);
ProviderManager pm = ProviderManager.getInstance();
pm.addExtensionProvider("x", "http://jabber.org/protocol/muc#user", new
MUCUserProvider());
MultiUserChat.addInvitationListener(mConnection, mInvitationListener);
Original comment by maim...@gmail.com
on 28 Aug 2010 at 7:34
Exactly, aSmack doesn't add package extensions per default. This is bad when
you get started (as you need to lern how to register those) but it's good for
production (no I don't want this hashtable monster extension!).
Good luck and happy coding :-)
PS: You should register your extensions ONCE BEFORE login / connect :-)
Original comment by rtreffer@gmail.com
on 28 Aug 2010 at 8:11
Original issue reported on code.google.com by
maim...@gmail.com
on 28 Aug 2010 at 6:36