Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Strings containing a backslash fail and the rules governing backslashes are not clear.
In debug tests with the console printing the sent/received payloads AmqpNetLite and ProtonCpp show:
Sender (both cases):
'["", "12345", "Hello, world", "\\\\x01\\\\x02\\\\x03\\\\x04\\\\x05abcde\\\\x80\\\\x81\\\\xfe\\\\xff"]'
ProtonCpp works by returning:
binary ["","12345","Hello, world","\\x01\\x02\\x03\\x04\\x05abcde\\x80\\x81\\xfe\\xff"]
AmqpNetLite fails by returning:
["", "12345", "Hello, world", "\x01\x02\x03\x04\x05abcde\x80\x81\xfe\xff"]