Nov 23
as3Stomp – Project site and source code
A little while ago I posted about my ActionScript 3 implementation of the STOMP protocol. Well, I am just now getting around to posting that I created a google project site and released the source. This version is slightly updated from the one that was included in my example code in the previous post.
If you have any questions about this project, or if you would like to contribute, please let me know. Please post any bugs to this issue list.

November 28th, 2007 at 9:27 pm
You might want to update the http://stomp.codehaus.org/Flash page so that folks know about the new project site.
November 29th, 2007 at 3:00 am
Hiram –
Small world. Literally just yesterday I was on your site watching this video on Camel (http://hiramchirino.com/2007/09/dip-your-toes-in-some-camel-today.html#links). Very cool stuff.
I just updated the wiki so that it mentions the new project site.
Keep up the good work.
December 4th, 2007 at 3:38 pm
Hello,
It is possible to do binary messaging with Stomp? From what I have seen Stomp seems to be XML
oriented when it comes to message payload. I am working on a financial application which
requires binary message payloads. Is this possible with Stomp?
Thanks,
Glenn
December 5th, 2007 at 4:19 am
Hi Glenn,
Sure, you could send over the binary data as a Base64 encoded string. Assuming you are using Flash/Flex as your client, you can take a look at the Base64Encoder and Base64Decoder classes in mx.utils. These classes are somewhat hidden (i.e. they do not show up when you try to use code completion, but they are there in the Flex 3 SDK).
The AS3 Stomp client does use the XMLSocket class, but that class name is a bit a of misnomer. You can use it to send over any string, whether it be XML or JSON or some other format. I could re-write the client so that is uses a straight binary socket, but I haven’t come up with a compelling reason to do so.
Best,
Derek
December 7th, 2007 at 3:47 am
Hello Derek,
Thanks for the information and insights.
Glenn
March 24th, 2009 at 3:06 pm
Hi there,
one question. Can I sent JMS-Messages with this lib.?
I try to communicate to the ActiveMQ.Agent.
November 2nd, 2009 at 2:26 pm
Hi, I have an problem about flex + activemq.
I can just connect the activemq by using file://…/aa.mxml.
If I try to communicate the flex file throught http://…/aa.mxml, it does not work.
Hope you kown this problem and reply me
lemonc