Spring Projects Issues
Spring Projects Issues
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Starting with /app/greetings creates a potential gap, while starting with /topic/greetings creates a potential overlap. So you have to start receiving the latest first via /topic/greetings, then...
**[spencercw](https://jira.spring.io/secure/ViewProfile.jspa?name=spencercw)** commented Hi Rossen. I understand that, but there doesn't seem to be any way to reliably subscribe to the topic first under the default configuration where the thread pool...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Okay I understand now. Indeed without a [receipt](https://stomp.github.io/stomp-specification-1.2.html#Header_receipt) from the topic subscription, the history may be incomplete. The simple broker does not support receipts, which is a...
**[spencercw](https://jira.spring.io/secure/ViewProfile.jspa?name=spencercw)** commented Subscription receipts would certainly be a welcome enhancement, but it doesn't feel like the best solution to this issue because it forces an extra round-trip to the server...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Unlike the outbound side where there is only a single subscriber (`StompSubProtocolHandler`) on the inbound side there are multiple handlers (broker, annotated controllers, user destination handler, etc)....
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Note to self to add extra guidance in the reference docs based on this discussion.
**[spencercw](https://jira.spring.io/secure/ViewProfile.jspa?name=spencercw)** commented I'm just pondering this a bit more and it feels like there are probably more issues here. All messages are received on a single thread and are then...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented You cannot do anything until connect-connected frames have been exchanged, and you cannot subscribe or send anything further until that's done. That's required to negotiate things like...
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented We migrated in Spring Data MongoDB 2.1 off Querydsl's MongoDB support classes towards our own types as Querydsl requires DBObject API usage and we're already on the...