Has anyone written an open source XMPP library that uses WebSockets and is meant to be run by a browser?

link|improve this question
feedback

5 Answers

up vote 12 down vote accepted

We don't yet have a standard for XMPP over WebSockets that the servers can implement, which will be required before the client side can be tackled adequately.

The first step is to finish WebSocket standardization. It looks like this may happen in an IETF HyBi working group, which at the time of writing has not yet been approved by the IESG. There was a HyBi Birds-of-a-Feather (BoF) at the Hiroshima IETF meeting a couple of weeks ago (see the meeting materials), which went pretty well.

After WebSockets has a stable reference, and seems to be settling down, the XSF will create a XEP that binds XMPP to WebSockets, presumably with a stanza per WebSocket frame.

Edit: Jack Moffitt has written an IETF Internet-Draft with a first pass at a protocol that can be used. WARNING. This is still likely to change drastically. Only implement it if you're willing to rip it out completely later. WARNING.

link|improve this answer
feedback

There are multiple solutions (none of them are perfect)

1. Use Kaazing.

They already support it. It's open source, but they have some sort of dual license, so better to check whether you can use for your project or not.

2. Combine js.io and APE(Ajax Push Engine)

APE is a Comet framework, but they recently started supporting Websockets. At their website("APE as proxy" section), they say it can run js.io libraries which includes xmpp.js, so combining them may work.

3. Use Caucho

It is a java based framework similar to APE which provides one stop shop Comet solution, and they seem to support both XMPP and WebSockets

4. Ask Strophe team to support WebSocket.

Strophe does XMPP over BOSH(Bidirectional-streams Over Synchronous HTTP), but there is a discussion about supporting WebSockets, too.

Jack Moffitt (the core developer and the author of the book mentioned above) seems interested in WebSockets, but we need to provide more strong reasoning about why they need to support WebSocket over BOSH. If you have good answers, please join the tread.

I just tried their xmpp,bosh,strophe echobot example (http://gist.github.com/272956), and worked nicely. You might also want to try it to see if it fits your requirement or not.

For #2 and #3, they say that they both support xmpp and websockets, but not sure if they work together.

What kind of application you are thinking about using XMPP & WebSockets for?

The below are suggestions for alternatives.

  • If you want the presence, chat, chat room equivalent functionality, you could make Wave Gadget or Robot, then expose to outside using Wave Embed API. Wave is actually built on top of XMPP.
  • If you are simply looking for very low latency messaging capability, you could try AMQP.
  • If you are looking for much simpler message streaming, you can just pipe in/out unix file as I demonstrated here.

I got most of the information above when I wrote this blog post. If you check the comment section time to time, I will post update once I find other solutions.

link|improve this answer
> What kind of application you are thinking about using XMPP & WebSockets for? I didn't necessarily have anything specific in mind; in general, of course, XMPP over WebSockets would provide a framework and protocol for true event-based web applications, greatly improving user experience for e.g.: * web-based email * web-based collaboration * real-time data synchronization * real-time updates * browser to browser communication The combination of these two technologies, as well as powerful client-side JavaScript engines, would seem to open up a lot of possibilities wrt modern web apps. – Daniel Sterling Jan 11 '10 at 11:10
feedback

There's a book coming soon that covers this topic...

Professional XMPP with JavaScript and jQuery alt text

But I'm assuming you don't want to wait for the book. So watch the Jack Moffitt's presentation from JSConf. I watched it this morning. (Jack Moffitt is the author of the book linked to above.)

The library involved (JavaScript and C implementations) is Strophe.

This is a very fruitful area of exploration, but very raw. We'll see more soon. WebSockets come with HTML5, is that right?

link|improve this answer
Indeed, WebSockets are part of HTML5; Google Chrome has them implemented – Daniel Sterling Dec 5 '09 at 2:16
feedback

I am not sure why you are asking specifically for a WebSocket solution because the XMPP servers would have to support this first.

However there are several XMPP JavaScript libraries available (as far as I see they all use the BOSH method):

These examples were taken from the XMPP Website which lists open source implementations of the XMPP protocol.

link|improve this answer
Links are generally not acceptable as answers. Formulate an answer specific to the question in your own words and use the link as reference. Mention me after edit, so I can remove my downvote. – markus-tharkun Nov 30 '11 at 16:38
1  
@markus: Thanks for the remarks. I fixed the answer. – MKroehnert Dec 3 '11 at 16:52
feedback

I'm not sure JS on browser side can handle websocket protocol alone as it mostly rely on browser API. Few browser support websocket yet: Chrome, Safari5, maybe Firefox4. There are many workarounds based on flash/as3 (then your js communicates with flash code) the the main limitation is that flash does not support secure connection (too bad).

BWT, you can check this websocket implem they provide opensource Java websocket client lib and seems to deal with xmpp stuff and if you browse the repositories you might find basic as3 websocket implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.