Does anyone know why Spring Integration (AMQP 1.3.5) requires the correlation-id to be a byte array? Rabbit's AMQP-Client 3.3.5 takes a String for the correlation-id in the AMQP.BasicProperties class. Doesn't Spring need to convert the byte array to this String at some point? We're finding that the correlation-id in the message Rabbit sends is still a byte array, and is never converted to a String. Any insight?
Spring AMQP 1.3.5 correlation id
350 Views Asked by aatuc210 At
1
There are 1 best solutions below
Related Questions in RABBITMQ
- Apache Mina SSHD server
- Apache SSHD: Where do I find the org/bouncycastle/crypto/prng/VMPCRandomGenerator class?
- Error while doing ssh to localhost via putty
- sshd@QNX: Could not load host key / Missing privileges separation
- ssh connection refused on Raspberry Pi
- docker container can't use `service sshd restart`
- Apache MINA SFTP - add callback methods after successful file transfers
- Apache MINA SFTP - limit the directory structure that the user sees
- Is there 3 processes when start the sshd service in cygwin?
- Get incoming ssh forwarded connection port number
Related Questions in SPRING-INTEGRATION
- Apache Mina SSHD server
- Apache SSHD: Where do I find the org/bouncycastle/crypto/prng/VMPCRandomGenerator class?
- Error while doing ssh to localhost via putty
- sshd@QNX: Could not load host key / Missing privileges separation
- ssh connection refused on Raspberry Pi
- docker container can't use `service sshd restart`
- Apache MINA SFTP - add callback methods after successful file transfers
- Apache MINA SFTP - limit the directory structure that the user sees
- Is there 3 processes when start the sshd service in cygwin?
- Get incoming ssh forwarded connection port number
Related Questions in AMQP
- Apache Mina SSHD server
- Apache SSHD: Where do I find the org/bouncycastle/crypto/prng/VMPCRandomGenerator class?
- Error while doing ssh to localhost via putty
- sshd@QNX: Could not load host key / Missing privileges separation
- ssh connection refused on Raspberry Pi
- docker container can't use `service sshd restart`
- Apache MINA SFTP - add callback methods after successful file transfers
- Apache MINA SFTP - limit the directory structure that the user sees
- Is there 3 processes when start the sshd service in cygwin?
- Get incoming ssh forwarded connection port number
Related Questions in SPRING-AMQP
- Apache Mina SSHD server
- Apache SSHD: Where do I find the org/bouncycastle/crypto/prng/VMPCRandomGenerator class?
- Error while doing ssh to localhost via putty
- sshd@QNX: Could not load host key / Missing privileges separation
- ssh connection refused on Raspberry Pi
- docker container can't use `service sshd restart`
- Apache MINA SFTP - add callback methods after successful file transfers
- Apache MINA SFTP - limit the directory structure that the user sees
- Is there 3 processes when start the sshd service in cygwin?
- Get incoming ssh forwarded connection port number
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Good question, I have no insight; it was before my time on the project and it's a day one issue.
Spring AMQP converts the
byte[]to a String inDefaultMessagePropertiesConverter(outbound); invoked by theRabbitTemplateusingUTF-8by default. The resulting string is added to theBasicProperties.On the listener container (inbound) side, UTF-8 is used unconditionally.
The rabbit client converts to
byte[]when writing to the wire (inValueWriter.writeShortStr()), unconditionally using charsetUTF-8.So, unless you change the charset in
RabbitTemplate(which would be bad), it's a no-op (but unnecessary if you already have aString).I can only speculate that, since
MessagePropertiesis an abstraction (and not tied to RabbitMQ), some other client had it as abyte[]when the abstraction was being designed.Since we only have a rabbitmq implementation, I wouldn't be averse to adding an optimization to the abstraction to avoid the unnecessary conversion.
Feel free to open an Improvement JIRA Issue and we'll take a look at it for the upcoming 1.5 release.