No, the SSE standard does not allow POST.
(For some technical reason, as far as I could tell, I think that designers have never seen use cases: it's not just big data, but if you want to do basic authentication of the scheme there are security reasons not to enter a password in the GET data .)
XMLHttpRequest (i.e. AJAX) allows POST, so one option is to revert to the old long-poll / comet methods. (My book, Data Push Apps with HTML5 SSE, details how to do this.)
Another approach is to POST all the data in advance and store it in an HttpSession , and then call the SSE process, which can use the session data. (SSE supports cookies, so the JSESSIONID cookie should work fine.)
The PS standard does not explicitly say that POST cannot be used. But, unlike XMLHttpRequest , there is no parameter to specify the http method used and do not specify the data that you want to publish.
Darren cook
source share