Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am not able to get the vcard information.

i have tried both methods,

VCard card = new VCard();
card.load(connection);
Log.i("VCARD", card.getFirstName());

During this i got that timeout error.....

Plus also have tried this.... before making a connection.

configure(ProviderManager.getInstance());

public void configure(ProviderManager pm) {
    pm.addIQProvider("vCard", "vcard-temp", new VCardProvider());
}

final IQ iq = new IQ() {
public String getChildElementXML() {
return "<iq from='test@xx.xx.xx.xx' id='v1' 
type='get'><vCard xmlns='vcard-temp'/>    
</iq>";
 }
};

iq.setType(IQ.Type.GET);
connection.sendPacket(iq);
connection.addPacketListener(new MyPacketListener(),new   PacketTypeFilter(IQ.class));

Please guide me how to get VCARD Information.

share|improve this question

1 Answer

up vote 1 down vote accepted

On either of those requests, you'll need to set a to address. Right now, these are going to your server, which likely doesn't implement XEP-0054.

share|improve this answer
I got it now working Joe...thanks a lot for help... – Programmer Sep 21 '11 at 8:56
@Programmer please help me how to get vcard information – SubbaReddy PolamReddy Nov 7 '12 at 9:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.