You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Orbited Discussion
If I understand correctly....
Basically stomp server is just a open message center, any stomp client
can connect to it and anyone can subscribe to a specific channel and
read/write from/to the channel.
How to secure the setup to prevent malicious script from accessing the
Stomp server?
A Monkey
unread,
Nov 17, 2009, 3:40:18 PM11/17/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to orbite...@googlegroups.com
Hi megablue,
You understand the situation correctly. Most messaging systems will
offer some form of authentication and authorization functionality.
MorbidQ does, and I believe that RabbitMQ and QPid do also. Have a
look at what your messaging system says about this.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to orbite...@googlegroups.com
STOMP is a simple open protocol, that doesn't force a message queue to
handle authorization/authentication in any particular way. Each
message queue has its own security configuration, for limiting access
of particular channels to particular authorized users.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to orbite...@googlegroups.com
Additionally, MorbidQ's RestQ system allows you to prevent users from joining or publishing to channels, or connecting to the server at all, if you don't want them to: http://morbidq.com/trac/wiki/RestQ.
-mario
megablue
unread,
Nov 17, 2009, 10:49:15 PM11/17/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Orbited Discussion
Thanks for the pointers... I'm reading those articles... However I
think that Stomp protocol is more complex than traditional server-
client approach.