Tagged Questions
STOMP is a simple interoperable protocol designed for asynchronous message passing between clients via mediating servers.
6
votes
3answers
2k views
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 ...
5
votes
5answers
1k views
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 ...
4
votes
1answer
163 views
Is Stomp's MessageMap format completely unusable?
I'm sending MapMessages in Java to ActiveMQ and retrieving them using Stomp in PHP. My message creation code looks like this:
MapMessage message = session.createMapMessage();
message.setInt("id", ...
4
votes
4answers
1k views
Triggering PHP from ActiveMQ
Background:
Our current system involves two services (one written in Java, the other in PHP) that communicate with each other using HTTP callbacks. We would like to migrate from HTTP callbacks to a ...
4
votes
2answers
842 views
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 ...
4
votes
5answers
1k views
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, ...
3
votes
2answers
319 views
activemq how to configure to work with stomp in python
I have activemq installed and running locally, but when I run the following script, I get an error:
#!/usr/bin/env python
import time
import sys
import stomp
class MyListener(object):
def ...
3
votes
2answers
155 views
.Net Messaging & STOMP Protocol
I have a doubt regarding .net messaging & its compatibility with other open protocols out there. I would like to know if .net messaging API capable of working with STOMP protocol? How do i make ...
3
votes
3answers
598 views
Pre-built AMQP and STOMP client (as in GUI client)
I'm looking for a client (as in GUI client, not client library) to play with our MQ server and familiarize myself with its semantics. Something that will send and receive messages at the press of a ...
3
votes
3answers
471 views
Connect PHP with Orbited
After searching the web for a good Comet and also and asking you guys what my best option is, I've chose to go with Orbited. The problem is if you need a good documentation about Comet you won't find. ...
3
votes
1answer
496 views
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 ...
2
votes
0answers
84 views
Why don't STOMP, ActiveMQ and Vagrant work on my system?
I have two vagrant machines. A first one called "web" that contains a small Ruby application and a second one called "mq" with ActiveMQ installed. I'm unable to connect my application with ActiveMQ.
...
2
votes
1answer
95 views
using ruby and stomp to write messages to ActiveMQ
I'm using stomp to write messages to ActiveMQ from Ruby. I'm following example at
http://calliopesounds.blogspot.com/2009/07/working-ruby-stomp-example.html
But i'm getting the below error, not sure ...
2
votes
1answer
123 views
synchronous messaging with STOMP over HornetQ
I am trying to figure out how to do syncronous messaging using stomp with hornetq, or if its even possible. I have an async stomp client working, but I can't see how I would implement a sync version.
...
2
votes
1answer
171 views
STOMP Protocol - Session ID Questions
From the STOMP 1.0 protocol description (http://stomp.github.com/stomp-specification-1.0.html) (emphasis mine):
After the client sends the CONNECT
frame, the server will always
acknowledge the ...
2
votes
2answers
136 views
STOMP: Way to check if a consumer is running before sending a message?
I'm wondering if there is a way to check if a consumer is running before sending a message? I'm using the latest php STOMP and am struggling to see if there's a way to detect if it's running before ...
2
votes
1answer
232 views
PHP & SOAP what use is a message broker?
I'm working on a solution to make certain data from a large database available to a remote website. My first thought was to simply cook up some soap web services to fetch certain data from the ...
2
votes
1answer
314 views
stomp.py based durable client fills up subscribers list in ActiveMQ
I have a problem with a durable client on ActiveMQ. I am using stomp.py in Python.
conn.start()
conn.connect(wait=True, header = {'client-id': 'myhostname' })
conn.subscribe(
...
2
votes
1answer
516 views
Is ActiveMQ's failover mechanism supported by C# (openwire) & python (stomp) clients?
I'd like to use ActiveMQ to connect python service with C# clients.
Is there a way to specify failover connection in C# (openwire) and python (Stomp)?
The ActiveMQ will be configured Shared File ...
2
votes
2answers
608 views
Authentication using Orbited, STOMP, and MorbidQ
I'm using Orbited to build a Comet chat system on a PHP-based website. However, currently any user can subscribe or post to any channel.
What I'm looking to do is have the browser listen for updates ...
2
votes
2answers
2k views
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 ...
2
votes
3answers
754 views
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 ...
2
votes
2answers
2k views
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 ...
2
votes
3answers
2k views
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 ...
1
vote
1answer
73 views
stomp content-type header set to plain for xml content
I'm sending a XML content to ActiveMQ from ruby script using stomp
I'm explicitly setting the content-type header toapplication/xml;charset=utf-8 as shown below
client.publish queue, xml, ...
1
vote
1answer
141 views
how to use Net::Stomp and transactions with receive_frame
I'm in the process of adapting some existing code using Net::Stomp from being able to handle a single topic to being able to work on multiple topics. Can anyone tell me if this approach is even ...
1
vote
2answers
826 views
Orbited launch problems: “ ConfigParser.NoSectionError: No section: 'formatters' ”
I'm trying to get Orbited started, but unfortunately I'm running into more than a few problems! First, problems with easy_install (solved). Then, proceeded on with instructions from ...
1
vote
1answer
379 views
ActiveMQ SocketException
I'm running into a problem every two months or so. My activemq server dies and the log is full with SocketExceptions.
I have a PHP application using stomp to send messages to ActiveMQ and
a Java ...
1
vote
2answers
265 views
What solution should I use for this webapp with websockets. ActiveMQ?
I'm currently in the middle of developing a webapplication which needs a websocket connection to receive notifications of events from the server.
The clients are separated in groups and all the ...
1
vote
1answer
192 views
Durability Problem with ActiveMQ-cpp and stomp
I have a problem creating durable consumers and producers with ActiveMQ-CPP and stomp protocol. I am trying to connect to HornetQ using stomp, and capable of sending and receiving messages in ...
1
vote
0answers
359 views
Gitorious socket timeout on repo creation
I'm getting the following error when trying to create a new repository with gitorious:
Timeout::Error (execution expired):
/usr/lib/ruby/1.8/timeout.rb:60:in `socket'
stomp (1.1) ...
1
vote
1answer
324 views
How to connect to ActiveMQ broker (stomp protocol,activemessaging) running in another Machine?
Basically, I have 2 MQs running on different machines(ubuntu).
I need them to be able to communicate with one another.
I have my broker.yml,on machine A, like this;
development:
adapter: stomp
...
1
vote
1answer
418 views
Is 0MQ a protocol, a layer, or both? Can I use it in conjunction with STOMP?
I've tied myself in knots, being new to both STOMP and 0MQ, but in a nutshell, I want to facilitate client to client communication in the browser with interaction from a PHP MOM or a number of PHP ...
1
vote
3answers
584 views
Communicating between PHP and Java using ActiveMQ/Stomp
Background
I have two services that need to communicate with each other over a message queue. One is a legacy service written in PHP and the other is in Java. Sooner than later, the PHP service will ...
1
vote
1answer
281 views
How to pss a ObjectMessage from perl to JMS
I want to send a perl object as a message to JMS server. I am using Net::Stomp to send a message from perl client to jms server. I am able to send text message but i want to construct a object similar ...
1
vote
1answer
262 views
Can I configure Apache ActiveMQ to use the STOMP protocol over UDP?
I'm developing a STOMP binding for Ada, which is working fine utilizing TCP/IP as the transport between the client and an ActiveMQ server configured as a STOMP broker. I thought to support UDP as well ...
1
vote
2answers
164 views
Streaming the result of a command back to the browser using Twisted and Comet
I'm writing an application that streams the output (by this I mean both sys.stdout and sys.stderr) of a python script excited on the server, in real time to the browser.
The users on the site will ...
1
vote
1answer
496 views
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 ...
1
vote
2answers
601 views
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 ...
1
vote
2answers
414 views
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 ...
1
vote
1answer
535 views
STOMP Protocol - Connect frame are login / passcode mandatory?
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 ...
1
vote
2answers
548 views
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 ...
1
vote
3answers
737 views
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 ...
0
votes
1answer
10 views
Stomp 1.1 Fuse Message Broker 5.5
Does Apache Fuse 5.5 supports stomp 1.1 completely?
I am trying to send "NACK" from python client. The connection is made on version 1.1
##############Connected##########
{'body': '', 'headers': ...
0
votes
0answers
58 views
How to handle lost connection in RabbitMQ ?
I'm on the duty of writing some kind of online card game.
Every move made in the game is delivered to other users via RabbitMQ messages.
I'm using STOMP protocol for communicating clients with the ...
0
votes
0answers
65 views
PHP Stomp connecting and reading form queue very slow
I'm working on writing an application that interfaces with ActiveMQ through PHP, and it seems like the best way of doing this is through STOMP. However, it seems that the STOMP library is incredibly ...
0
votes
0answers
50 views
python client for activemq
I'm using stomp.py client. I'm able to connect properly on port 61616, but can't receive messages. It spits the "ERROR:Lost connection" after successfully executing
conn.start()
conn.connect()
I ...
0
votes
1answer
53 views
How to build ActiveMQ-CPP Stomp only client
Is it possible to build an ActiveMQ-CPP Client to support only STOMP Protocol? Regular native library with dependencies is too big for my embedded device and I want to build a client with just the ...
0
votes
1answer
87 views
can connect PHP app with a sonicMQ queue using STOMP protocol?
I need read a queue from sonicMQ into my PHP app, I tried with stomp protocol but I don't have any result.
0
votes
0answers
46 views
irb Vs ruby script - different behavior - jruby + stomp
While exploring a discrepancy in behavior of the 'stomp' gem in jruby and mri, using rvm ( http://jira.codehaus.org/browse/JRUBY-4941 ), I came across another issue.
If I execute the following ...