The problem is resolved. SockJS emulates websockets on IE9 without problems. The only thing I had to do was provide an absolute path to create the SockJS object.
Before:
var webSocket = new SockJS('topic/publish');
After:
var webSocket = new SockJS('http://localhost:8080/topic/publish');
, Chrome Firefox, IE9, - ( ).