-
-
Notifications
You must be signed in to change notification settings - Fork 754
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[jQuery] [long-polling] callbacks for aggregated messages still not fired properly #615
Comments
Hum...I did tested several times that scenario. The raw message was sent in one packet, right? |
Yes, a single packet. Here's the response recorded in wireshark: a gzipped response body follows. here it's decoded to plaintext: |
OK it works as expected with WebSocket, not sure why it has issue with long-polling. Digging |
Workaround: set the executeCallbackBeforeReconnect : true |
Possibly related to #568, #552.
Whenever two aggregated messages arrive to client, onMessage is fired only for the last one.
raw message:
142|{"source":{"type":"customer","uuid":"3144563d-2030-4eb6-a989-6fd6c0aebddf"},"payload":{"type":"newD"},"destination":{"type":"deptA","id":164}}142|{"source":{"type":"customer","uuid":"bd10db52-fa93-454d-9209-16761cac5f89"},"payload":{"type":"newD"},"destination":{"type":"deptA","id":164}}
Tested on firefox 15.0.1, glassfish 3.1.2.2, atmosphere 1.0, long-polling transport.
The text was updated successfully, but these errors were encountered: