stomp

How do I use transactions with Stomp and ActiveMQ (and Perl)?

I'm trying to replace some bespoke message queues with ActiveMQ, and I need to talk to them (a lot) from Perl. ActiveMQ provides a Stomp interface and Perl has Net::Stomp, so this seems like it should be fine, but it's not. Even if I send a BEGIN command over Stomp, messages sent with SEND are immediately published, and if I ABORT the ...

Stomp.framework iPhone linking. Anyone have experience?

Having trouble linking the Stomp.framework into an iPhone SDK application. http://code.google.com/p/stompframework/ I follow the instructions, adding it to the project, adding a Build Phase for Copying the Files, and including it via #import . I keep getting "image not found". Anyone try this and/or have a clear idea why? ...

Cocoa, Stomp, ActiveMQ, iPhone, SSL, & AsyncSocket Help Needed

Well, maybe not with all 4 things, but here's my situation: I have an ActiveMQ backend (running on my desktop Mac). It's a stock Apache ActiveMQ server I have which I am basically using as an echo server to tail the logs and debug my client. The client is an iPhone project with a hacked up Stomp.framework implementation using AsyncSocke...

How to use JMS Message Transformation in ActiveMQ with Stomp/JSON

I am sending messages in JSON format to an ActiveMQ server. I am trying to use JMS Transformation to transform the JSON encoded object into a true Java Object in hopes of being able to use selectors on the data inside. Here is a link to the documentation on Stomp and Message Transformation. Here is a link to a discussion on the patch wh...

How to configure ActiveMQ to assign an 'anonymous' user and role to non-authenticated users

I wish to set up a ActiveMQ instance (primarily as a STOMP server) which will service requests from two types of clients: authenticated users which can read and write to topics non-authenticated users which can only read from topics I have been using the SimpleAuthenticationBroker so far and I cannot see anyway to configure the above...

weird IE 7 javascript problem

I have this javascript code working in firefox, chrome, and safari for (idx in all_auction_ids){ alert(all_auction_ids[idx]); }; for the above, instead of getting the values in all_auction_ids, the first value I get is text of type function that looks like a for loop! But if I run the code below, it works fine. for (idx=0;idx<al...

Is there a widely used STOMP adapter for Twisted?

I checked out stomper and it didn't look complete. (I'm very new to Python) Is anybody out there using stomper in a production environment? If not, I guess I'll have to roll out my own Twisted Stomp adapter. Thanks in advance! ...

STOMP Protocol - Connect frame are login / passcode mandatory?

Hi I have been using the STOMP protocol in various guises. I have experienced this phenomenon in the PHP, Python and Objective-C libraries for STOMP. The STOMP specification on the STOMP website is not specific on this point. Basically, the CONNECT function in all three libraries (although the Python one has now fixed this, it was ackn...

Which group messaging technology to use?

I feel a little bit kind of confused — for about 24 hours I have been thinking which group broadcasting technology to use in my project. Basically, what I need is: create groups (by some backend process) broadcast messages by any client (1:N, N:N) (potentially) direct messages (1:1) (important) authenticate/authorize clients with my o...

How to use Arithmetic conditions and Operators in ActiveMQ/JMS Selectors using the Stomp protocol

I have several message with properties set. Some of these contain numeric data, although I have made no attempt to declare this explicitly to ActiveMQ while sending the messages. When I try to use arithmetic conditions, ie: <, >, <=, >= and family, I get an error. Is there any way to use arithmetic conditions using selectors via Stomp? ...

STOMP and JSON

If I have a STOMP/JSON AJAX app, does that mean that JSON is functioning on top of STOMP? ...

Does JBoss Messaging support non-Java clients?

For enterprise integration projects, a non-Java access to message brokers like JJBoss Messaging can be very helpful. For the Apache ActiveMQ and the GlassFish Open Message Queue products there are many different client implementations available, using native or standard protocols like Stomp. JBoss Messaging has a task "Implement STOMP p...

Stomp Broadcast with Rabbitmq and Python

Im trying to move a system from using morbid to rabbitmq, but I cannot seem to get the same broadcast behaviour morbid supplied by default. By broadcast I mean that when a message is added to the queue, every consumer recieves it. With rabbit, when a message is added they are distributed round robin style to every listener. Can anyone t...

Stomp over SSL USING PYTHON.............

iam trying to find a good python client to test stomp over ssl im using a Fuse Message Broker...........and intend to implement atleast client side authentication later......... can anyone help me get started ...

Problems using ActiveMQ + activemessaging gem in ruby

Hi all, I have AMQ + Activemessaging running in a Rails App. I'm facing a problem with activemessaging not acting on messages when they are received. This is solved once i restart the client. Apparently, it works for a while but not sure when it stops acting weirdly. This is resulting in loss of messages as they are being read, the St...

Using messaging to do writes as well as reads

Hi, I come from a web background where I only have to deal with HTTP so please excuse my ignorance. I have an app which where clients listen for changes in a message queue which uses stomp. Previously the client only needed to listen to the relevant channels for messages telling them about changes on the server and update themselves ac...

How to do HTTP Server Push -- aka do I NEED STOMP, AMPQ, etc?

I am writing a collection of web services, one of which needs to implement server push. The client will be native Objective-C. I want this to be as simple, fast, and lightweight as possible. The data transmitted will be JSON. Is it possible to do this without using a message broker? ...

PHP code for orbited comet server and stomp

After long searching of comet server, i choose orbited comet server. I have to build a real-time chat system in PHP using Orbited Comet Server and Stomp PHP client. It does not handle hundreds or thousands of simultaneous connections. How could i solve this problem? Is there any other library to add for fix this problem? Thanks. M...

ActiveMQ : Use Django Auth with Stomp

I am working on power monitoring and want to send live power data to authorised users only. Some users have opted to install power sensors in their houses, others are viewing those sensors. Each sensor sends samples to a Twisted backend - the goal is to have this backend forward the data to Javascript running in the browser. My current ...

SOAP over Stomp

Is there any possibility to transport SOAP messages over Stomp(Streaming Text Oriented Protocol) protocol? If yes, what are the implementations? ...