mital / mcrux

Automatically exported from code.google.com/p/mcrux
0 stars 0 forks source link

Create XMPP Plugin #17

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I would like to have the following functionality in MCrux.

Create XMPP Plugin which supports various functionality related to XMPP
Protocol. 

Original issue reported on code.google.com by mital.d....@gmail.com on 11 Feb 2009 at 6:36

GoogleCodeExporter commented 9 years ago
We have to create an XMPP Plugin which has
* connect()
* send()
* disconnect()
methods exposed.
also there should be some way through which I can call appropriate event 
handlers in
the JavaScript Code.

Original comment by mital.d....@gmail.com on 11 Feb 2009 at 7:18

GoogleCodeExporter commented 9 years ago
This xmpp plugin needs to be separated out in two different plugins
1) Network TCPSocket Plugin.
2) XML Parser plugin.

the XMPP specific parsing will be done in JavaScript code as to make the Plugins
Reusable in other applications.

Original comment by mital.d....@gmail.com on 21 Feb 2009 at 2:55

GoogleCodeExporter commented 9 years ago
Developing two plugins:
Socket: this is a socket plugin which is used to create any socket connection 
to the
remote peer.
LIBXMLSAXParser: this is a SAX parser plugin. this plugin uses libxml as the 
backend
to parse the xml file chunks.

Original comment by mital.d....@gmail.com on 28 Feb 2009 at 2:25

GoogleCodeExporter commented 9 years ago
Adding an socket example which connects to a day time server "time.nist.gov" and
receives the time string from the server.

Original comment by mital.d....@gmail.com on 29 Mar 2009 at 5:25