W. P.

Results 12 comments of W. P.

I can't share the file unfortunately. It is a simple text file that I'm sending. I'm using pure WebSocket, I tried to use SockJS and it's not working at all...

This is really weird. I will try to figure it out, maybe I missed something. If I find a solution, I will post it here if it's related to STOMP....

I don't think my files are not UTF8 valid because both files are exactly identical. Actually, my file which is never sent is the exact same of the one which...

Yes, I'm still investigating on that. I'm using the default spring websocket message broker.

Ok, I will create a case that reproduces my configuration. I will do it as soon as I can (2-3 days) because I've not enough time right now. Thanks for...

Really good news indeed ! So it should only be required for Spring brokers then. Thanks for your work !

It works well for me with the `splitLargeFrames` option. I tried with a 283kB file and received the correct file in my server.

Very good ! Thanks a lot :)

If you are using a Spring broker, you have to add `splitLargeFrames: true` in your Stomp configuration. Large frames causes issues with Spring broker.

When you call your `RxStompService.configure(my_config)` you can pass a `InjectableRxStompConfig` before calling `RxStompService.activate()` where you can define options like heartbeats, reconnectDelay and **splitLargeFrames**. Everything is detailed here: https://stomp-js.github.io/api-docs/latest/classes/RxStompConfig.html. Here is...