Effective October 27, 2012, online and email support for FuseSource products will move to Red Hat support channels. For more information, please see the JIRA Migration to Red Hat FAQ. As of October 27th, please open all new issues in the Red Hat Customer Portal .
In STOMP 1.0, all client connections start with:
CONNECT
That makes it very hard to discriminate a STOMP connection from an HTTP connection since CONNECT is valid HTTP verb too. This makes it hard to build a sever that can accept different types of protocols on one port.
Perhaps it would be better if STOMP 1.1 starts with an Protocol info frame before the CONNECT frame. For example:
STOMP
version=1.1
^@
CONNECT
^@
Description
In STOMP 1.0, all client connections start with:
CONNECT
That makes it very hard to discriminate a STOMP connection from an HTTP connection since CONNECT is valid HTTP verb too. This makes it hard to build a sever that can accept different types of protocols on one port.
Perhaps it would be better if STOMP 1.1 starts with an Protocol info frame before the CONNECT frame. For example: