Hi,
I am new here but would just like to "vote" for this functionality to
be defined as early as possible.
Currently we need to encode the "headers" of our messages in the body
of the message and use a form of content based routing to determine
the route a message should take.
It would be absolutely perfect if we could encode the "numeric"
content (float, double, int, long, short, boolean) in the message
headers so that we can benefit from routing provided natively by the
message server, rather than relying on an ESB or homebrew solution to
do this for us.
We would be happy with the proposed JSON notation.
If the functionality was there, we would definitely be using it today!
I do take Brian's point below, but I feel as if relying on possibly
incompatible conventions between vendors could diverge the user base
in this area at least.
Tom
http://www.jboss.org/blacktie
On Jun 15, 8:52 am, Dejan Bosanac <
de...@nighttale.net> wrote:
> Currently header values are interpreted as plain String, which makes usage
> of selectors with numerical values impossible with Stomp.
> The idea is to support following notation for header values:
>
> Number (integer, real, or floating point)
> String (double-quoted Unicode with backslash escapement)
> Boolean (true and false)
> Array (an ordered sequence of values, comma-separated and enclosed in square
> brackets)
> Object (collection of key/value pairs, comma-separated and enclosed in curly
> brackets)
> null
>
> Cheers
> --