Binary serialization/deserialization support; support for proxy#10
Binary serialization/deserialization support; support for proxy#10SergeyFilippov wants to merge 1 commit intoNetina:mainfrom
Conversation
- existing qeue subscription - web proxy support - hearbeat message type added - nugets updated
|
Hi @SergeyFilippov, according to my checks, the fact that connecting to a queue will inevitably ask to recreate it is caused by the STOMP protocol itself. I don't know if it's possible to bypass it through the library. |
We're using this implementation in the app, and it works with the following scenario:
I'm not sure what your scenario is, but I it's definitely possible to connect to existing queue using this client. |
As we're working with RabbitMQ by both AMQP and STOMP, it was required to add binary serialization support.
Also, we're mostly consuming existing queues, and current implementation would throw an exception in this case. It is still problematic to subscribe to existing queue - as RabbitMQ may use different paths, but it's not throwing an exception now :)
Here is the list of implemented improvements :