agimenezwally

Results 6 comments of agimenezwally

I just faced the exact problem the user is having and I know the why and the solution. The user is connecting to a TLS server which does not support...

Beware, my project is modified to work with google cloud messaging, I needed to allow null Jid's on messages, expose the Xml utilities and some modifications more I to do...

Here it is: https://www.dropbox.com/s/gaox07t0ll6ms74/Sharp.Xmpp.rar?dl=0

In case you want to know how to compose the message for GCM here it is: ``` public void SendDownStream(GCMDownStream Message) { Message.message_id = Guid.NewGuid().ToString(); Message.dry_run = true; string payload...

Hi @pgstath I'm not sure which parts conflict with the standar. If you mean with the standard XMPP protocol, none of the changes conflict with it as GCM uses pure...

Ok, I think I managed to do something acceptable: 1-Added a new constructor to IM.Message which allows to create a message from an XmlElement 2-Left the Xmpp.Xml namespace public to...