                                    SERStomp
                                    0.3.1 (50)

Home page: http://www.germane-software.com/software/Stomp

SERStomp is a lightweight implementation of the Stomp specification[1].  As
of the first release it includes both client and server implementations for
Java.

I made a conscious choice to use only Java 1.4 syntax here, because the 
project that I originally developed this for was being deployed on 1.4
VMs.


BUILDING

Uses Jakarta Ant.  You build one of: all-jar, server-only-jar, or
client-only-jar depending on what you're using it for.

  * client-only-jar Produces a 8kb jarball.  Useful for applications
    that only want to be able to connect via a network to a Stomp server.
  * server-only-jar Produces a 12.5kb jarball.  Useful for
    applications that want to run a server, but don't need the client
    class.  Right now, this doesn't gain you much over the all-jar, but
    I'll refactor with factories and it'll get a bit smaller in future
    versions.
  * all-jar Produces a 13.5kb jarball.  Contains both the client and server
    codes.


USAGE

See doc/index.html and java/Test.java for examples.



[1] http://docs.codehaus.org/display/STOMP/Home
