Re: how to update my changed picture in my buddy (General questions)
Sapna,
The following code accesses your VCard:
[code]IXMPPVCard mycard;
mycard.AttachDispatch(m_XMPP.GetVCard(), TRUE);
AfxMessageBox(mycard.GetJid());[/code]this code is to get my own vcard from the server. this is not where the problem is. when the server returns the vcard for myself it returns contact details of xmpp_vcarddetails as null. so i cannot get my own vcard if i haven't set a picture already. if i have set a picture then the contact details returned from the server is not null.
While this code:
[code] IXMPPContact cnt;
cnt.AttachDispatch(Contact, TRUE);
IXMPPVCard vcard;
vcard.AttachDispatch(cnt.GetVCard(), TRUE);
vcard.Receive();[/code]Is accessing VCard of a Contact.
I'm not really expert in c++, but can't you check if object is null or not?
// this is for all my contacts in my buddy list. here i am receiving all the vcards properly
Something like this (in VCardDetails):
[code] if(Contact)
{
IXMPPContact cnt;
cnt.AttachDispatch(Contact, TRUE);
IXMPPVCard vcard;
vcard.AttachDispatch(cnt.GetVCard(), TRUE);
vcard.Receive();
}
else
{
IXMPPVCard mycard;
mycard.AttachDispatch(m_XMPP.GetVCard(), TRUE);
AfxMessageBox(mycard.GetJid());
}[/code]//here i not only need my own jid but also my own nickname that i have set earlier.
Can you try that? If that doesn't help, I'll ask our programmers for a code sample, but imo something like that should work.As for the LicenseKey. Did you set the property? Does it exist? If property doesn't exist, then you most probably downloaded Demo, or you didn't re-import the component into VC.
Regards,
Damba
Complete thread:
- how to update my changed picture in my buddy - sapna, 2009-07-06, 08:17
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 09:56
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 10:56
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 11:56
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 13:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 15:44
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 16:02
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 16:29
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 17:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 17:18
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 18:36
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 07:45
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 10:39
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 13:43
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 13:59
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 14:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:02
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:05
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:08
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:25
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:33
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:58
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:34
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:38
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-08, 08:42
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 09:35
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 10:15
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 10:22
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 13:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:35
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:45
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:49
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 15:27
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 16:11
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 15:27
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:49
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:45
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 14:35
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 13:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 10:22
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-09, 10:15
- Re: how to update my changed picture in my buddy - sapna, 2009-07-09, 09:35
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-08, 08:42
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 16:34
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:58
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:33
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 15:25
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:05
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 15:02
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 14:38
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 13:59
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 13:43
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-07, 10:39
- Re: how to update my changed picture in my buddy - sapna, 2009-07-07, 07:45
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 18:36
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 17:18
- Re: how to update my changed picture in my buddy - wodDamir, 2009-07-06, 17:08
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 16:29
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 16:02
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 15:44
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 13:38
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 11:56
- Re: how to update my changed picture in my buddy - sapna, 2009-07-06, 10:56
- Re: how to update my changed picture in my buddy - woddrazen, 2009-07-06, 09:56