adam
adam

Reputation: 22587

Symbian C++ STOMP library

I want my S60 Application to utilize the Stomp protocol.

Although it would be fairly simple to implement myself (but nothing is ever as simple as I hope with Symbian) - I am wondering if anyone has any experience in this already.

It seems a Stomp library exists in almost every other language already. The closest match for Symbian would be the C++ library listed here but that is embedded quite integrally within the ActiveMQ source.

Can anyone offer any advice/experience?

Thanks!

Upvotes: 1

Views: 1038

Answers (2)

magicbadger
magicbadger

Reputation: 66

In case this is still relevant - I've just finished my implementation of a STOMP client for Symbian, fully using the Active Scheduler framework. We're going to release it as opensource once I get something set up on Google Code.

As Adam says - the implementation needed to be purely within the Symbian framework or it would be unusable (i.e. you'd either need to thread it - arg - or it would just cause all sorts of blocking problems).

I'd also like to get in touch with the STOMP people and have it listed on the website, but haven't been able to find a contact - does anyone here know the best way to do it?

Upvotes: 2

lothar
lothar

Reputation: 20237

Maybe Stomp messaging for non-Java programmers is of any help.

Upvotes: 1

Related Questions