1Sample code for STOMP-based Thrift clients and/or servers. 2 3Although the sample Thrift STOMP Transport is written in 4Delphi/Pascal, it can easily serve as a starting point for 5similar implementations in other languages. 6 7STOMP is a protocol widely supported by many messaging systems, 8such as Apache ActiveMQ, RabbitMQ and many others. In particular, 9it can be used to communicate with Service-Bus products like Rebus 10or NServiceBus, when running against a STOMP-capable MQ system. 11 12A prerequisite for this sample is the Delphi STOMP Adapter written 13by Daniele Teti (http://www.danieleteti.it/stomp-client), currently 14hosted at Google Code (http://code.google.com/p/delphistompclient). 15 16At the time of writing, the STOMP adapter does not fully support 17binary data. Please check whether this has been fixed, otherwise 18you have to use the JSON protocol (or to fix it on your own). 19