You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by "Avril Kenney (JIRA)" <ji...@apache.org> on 2013/01/25 21:29:12 UTC

[jira] [Created] (APLO-289) spaces in topic IDs get "\u0020" inserted before them

Avril Kenney created APLO-289:
---------------------------------

             Summary: spaces in topic IDs get "\u0020" inserted before them
                 Key: APLO-289
                 URL: https://issues.apache.org/jira/browse/APLO-289
             Project: ActiveMQ Apollo
          Issue Type: Bug
          Components: apollo-stomp
    Affects Versions: 1.5
            Reporter: Avril Kenney
            Priority: Minor


If I try to create a topic/queue with a space in the name, it inserts "\u0020" preceding each space.

Here is an example in Python:
--------
import socket

connect_frame = 'CONNECT\n\nlogin:admin\npasscode:password\n\n\x00'
frame = 'SEND\ndestination:/topic/the next topic\n\nhello\x00'

sock.connect(host_and_ports) # where host_and_ports is a tuple (host, port)
sock.sendall(connect_frame)
sock.sendall(frame)
--------

Then when I get the topic information (by looking at it in the web interface or by http-getting the json info in Python), the topic id is
the\u0020 next\u0020 topic

We recently upgraded from Apollo 1.0 to 1.5, and I think that this issue coincides with the upgrade (there were definitely successful uses of topics with spaces in them before the upgrade).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira