Subject: Activate Element constuctor problem
On the agsXMPP.protocol.extensions.bytestreams.Activate element the second constructor is like this:
(it took me 20' to find out why i was senting such a baad Iq to the server...)
I think the correct is:
Hope I am right!
public Activate(Jid jid)
{
Jid = jid;
}
you forgot to call this(), so the namespace and Tagname wont ever be set {
Jid = jid;
}
(it took me 20' to find out why i was senting such a baad Iq to the server...)
I think the correct is:
public Activate(Jid jid):this()
{
Jid = jid;
}
{
Jid = jid;
}
Hope I am right!