Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to connect to rabbitmq using javascript without nodejs

I'm implementing a mobile application using Titanium appcelerator.

In this app, I'll need implementing a chat using RabbitMQ. I saw a lot of examples of how to connect to RabbitMQ server using node js, but in my case it isn't applicable and I could not find any JavaScript standalone client.

I'd like know if there's a way to connect to RabbitMQ without a client, or if there are any JavaScript standalone client?

like image 998
GodFather Avatar asked Jan 31 '13 14:01

GodFather


People also ask

How do I connect to RabbitMQ?

In order for a client to interact with RabbitMQ it must first open a connection. This process involves a number of steps: Application configures the client library it uses to use a certain connection endpoint (e.g. hostname and port) The library resolves the hostname to one or more IP addresses.

What is the URL for RabbitMQ?

If you have RabbitMQ installed on localhost, go to http://localhost:15672/ to find the management page.

Does RabbitMQ use WebSockets?

RabbitMQ Web MQTT plugin is rather simple. It takes the MQTT protocol, as provided by RabbitMQ MQTT plugin and exposes it using WebSockets.


1 Answers

Is it the RabbitMQ Web STOMP you are searching for? With SockJS it works fine even in old browsers and need no Node.js or any web-server side code written by you.

like image 59
Le chat du rabbin Avatar answered Sep 28 '22 11:09

Le chat du rabbin