Subject: VCard
the following is from the MiniClient and works for the account used to test
viq = new VcardIq() {Type = IqType.get, To = _jid.Bare};
xmppClient.IqFilter.SendIq(viq, VcardResult, null);
however, when I replace the second line with this
Iq iq = xmppClient.IqFilter.SendIqSynchronous(viq, 3000);
no matter how long the timeout, the call always times out and returns null
Thanks in advance
viq = new VcardIq() {Type = IqType.get, To = _jid.Bare};
xmppClient.IqFilter.SendIq(viq, VcardResult, null);
however, when I replace the second line with this
Iq iq = xmppClient.IqFilter.SendIqSynchronous(viq, 3000);
no matter how long the timeout, the call always times out and returns null
Thanks in advance