Good XMPP Java Libraries for server side?

I was hoping to implement a simple XMPP server in Java.

What I need is a library which can parse and understand xmpp requests from a client. I have looked at Smack (mentioned below) and JSO. Smack appears to be client only so while it might help parsing packets it doesn't know how to respond to clients. Is JSO maintained it looks very old. The only promising avenue is to pull apart Openfire which is an entire commercial (OSS) XMPP server.

I was just hoping for a few lines of code on top of Netty or Mina, so I could get started processing some messages off the wire.


Joe -

Well the answer to what I am trying to do is somewhat long - I'll try to keep it short.

There are two things, that are only loosely related:

1) I wanted to write an XMPP server because I imagine writing a custom protocol for two clients to communicate. Basically I am thinking of a networked iPhone app - but I didn't want to rely on low-level binary protocols because using something like XMPP means the app can "grow up" very quickly from a local wifi based app to an internet based one...

The msgs exchanged should be relatively low latency, so strictly speaking a binary protocol would be best, but I felt that it might be worth exploring if XMPP didn't introduce too much overhead such that I could use it and then reap benefits of it's extensability and flexability later.

2) I work for Terracotta - so I have this crazy bent to cluster everything. As soon as I started thinking about writing some custom server code, I figured I wanted to cluster it. Terracotta makes scaling out Java POJOs trivial, so my thought was to build a super simple XMPP server as a demonstration app for Terracotta. Basically each user would connect to the server over a TCP connection, which would register the user into a hashmap. Each user would have a LinkedBlockingQueue with a listener thread taking message from the queue. Then any connected user that wants to send a message to any other user (eg any old chat application) simply issues an XMPP message (as usual) to that user over the connection. The server picks it up, looks up the corresponding user object in a map and places the message onto the queue. Since the queue is clustered, regardless of wether the destination user is connected to the same physical server, or a different physical server, the message is delivered and the thread that is listening picks it up and sends it back down the destination user's tcp connection.

So - not too short of a summary I'm afraid. But that's what I want to do. I suppose I could just write a plugin for Openfire to accomplish #1 but I think it takes care of a lot of plumbing so it's harder to do #2 (especially since I was hoping for a very small amount of code that could fit into a simple 10-20kb Maven project).


http://xmpp.org/xmpp-software/libraries/ has a list of software libraries for XMPP. Here is an outdated snapshot of it:

ActionScript

  • as3xmpp
  • C

  • iksemel
  • libstrophe
  • Loudmouth
  • C++

  • gloox
  • Iris
  • oajabber
  • C# / .NET / Mono

  • agsXMPP SDK
  • jabber-net
  • Erlang

  • Jabberlang
  • Flash

  • XIFF
  • Haskell

  • hsxmpp
  • Java

  • Echomine Feridian
  • Jabber Stream Objects (JSO)
  • Smack
  • JavaScript

  • strophe.js
  • xmpp4js
  • Lisp

  • cl-xmpp
  • Objective-C

  • xmppframework
  • Perl

  • AnyEvent::XMPP
  • PHP

  • Lightr
  • xmpphp
  • Python

  • jabber.py
  • pyxmpp
  • SleekXMPP
  • Twisted Words
  • xmpp-psn
  • xmpppy
  • Ruby

  • XMPP4R
  • Tcl

  • JabberLib

  • I went through the same search. I first tried Smack and then realized it's targeted at c2s (client to server) and didn't have what I need. I looked at Tinder but didn't like the licensing model (also when I looked it was much more raw). I finally looked at Whack and realized it was what I needed - but it's missing a lot (that's why Tinder came about I think).

    So..my solution? Forked Whack, added some code to abstract out things, and try to make it easier to use: http://github.com/Communitivity/Adirondack

    I wrote a Scala library based on that to help create external component based agents, see http://github.com/Communitivity/Shellack and http://github.com/Communitivity/MinimalScalaXMPPComponent

    One of my main goals was to make it easy to write a component quickly. An example of such a component is below:

    object Main {
    
    /**
    * @param args the command line arguments
    */
      def main(args: Array[String]) :Unit = {
          new XMPPComponent(
            new ComponentConfig() {
                def secret() : String = { "secret.goes.here" }
                def server() : String = { "communitivity.com" }
                def subdomain() : String = { "weather" }
                def name() : String = { "US Weather" }
                def description() : String = { "Weather component that also supported SPARQL/XMPP" }
            },
           actor {
            loop {
                react {
                    case (pkt:Packet, out : Actor) =>
                        Console.println("Received packet...n"+pkt.toXML)
                        pkt match {
                            case message:Message =>
                                val reply = new Message()
                                reply.setTo(message.getFrom())
                                reply.setFrom(message.getTo())
                                reply.setType(message.getType())
                                reply.setThread(message.getThread())
                                reply.setBody("Received '"+message.getBody()+"', tyvm")
                                out ! reply
                            case _ =>
                                Console.println("Received something other than Message")
                        }
                     case _ =>
                        Console.println("Received something other than (Packet, actor)")
                }
            }
           }
        ).start
      }
    }
    

    Ignite Realtime shares its Tinder API which is a basic building block extracted from OpenFire just for the creation of server-side components and possibly other servers. It implements basic XMPP building blocks and you are free to start from there.

    链接地址: http://www.djcxy.com/p/94160.html

    上一篇: 如何使用带有Jetty emded定制服务器的WebSocket

    下一篇: 用于服务器端的良好XMPP Java库?