How to parse a CustomIQ in ASMACK
问题 I am using ASMACK library fo my application. I received the following IQ from my server. <iq id='bind_2' type='result'><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><jid username='xx' fullname='yy'>xx@aa.bb.cc.dd/Resource</jid></bind></iq> For parsing this IQ, I added the IQProvider while setting XmppConnection configuration by using ProviderManager class as ProviderManager.getInstance().addIQProvider("bind", "urn:ietf:params:xml:ns:xmpp-bind", new CustomIQProvider()); And my