STOMP is the Simple (or Streaming) Text Orientated Messaging Protocol.
STOMP provides an interoperable wire format so that STOMP clients can communicate with any STOMP message broker to provide easy and widespread messaging interoperability among many languages, platforms and brokers.
This git repository hosts the released and in progress STOMP specifications. The latest released specification is located at:
src/stomp-specification-1.2.md
This git repository generates the STOMP specification static website using either Maven or the SBT build tool.
Once you have Maven installed, you can generate the website by running:
mvn package
It will generate the static site to the target/sitegen
directory, just
point your web browser at target/sitegen/index.html
Once you have SBT installed, you can generate the website by running:
sbt update
sbt package
It will generate the static site to the target/scala_2.8.1/sitegen
directory, just
point your web browser at target/scala_2.8.1/sitegen/index.html