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 ...
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?
...
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...
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...
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...
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...
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!
...
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...
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...
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? ...
If I have a STOMP/JSON AJAX app, does that mean that JSON is functioning on top of STOMP?
...
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...
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...
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
...
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...
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...
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?
...
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...
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 ...
Is there any possibility to transport SOAP messages over Stomp(Streaming Text Oriented Protocol) protocol?
If yes, what are the implementations?
...