You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Message reaches the controller method and no errors are logged inside spring boot.
I guess the problem is, that the returned Frame is a Payload frame without the "next" flag but with the "complete" flag. Because of that "RSocketMachine.js:717" never calls onNext(...) which would complete the requestResponse interaction. In "RSocketMachine.js:316" "onComplete" is set to an emptyfunction.
Is that correct?
My fix is to change RSocketMachine.js:315-319 to this
Hey,
I'm trying to use RequestResponse with Spring Boot as RSocketServer.
I have a Controller Method like this:
My Request in ts looks like this (the socket actually comes from another subject... but it is the reactivesocket received from the "connect" method):
The Message reaches the controller method and no errors are logged inside spring boot.
I guess the problem is, that the returned Frame is a Payload frame without the "next" flag but with the "complete" flag. Because of that "RSocketMachine.js:717" never calls onNext(...) which would complete the requestResponse interaction. In "RSocketMachine.js:316" "onComplete" is set to an emptyfunction.
Is that correct?
My fix is to change RSocketMachine.js:315-319 to this
of course this now emits null as value in the single which is probably not wanted^^
The text was updated successfully, but these errors were encountered: