4

I am migrating a web application based on Apache Tomcat 7.0.35 using the WebSocket Servlets to IBM WebSphere Application Server (WAS). The problem is that I don't think WAS supports WebSockets.

Gorayni
  • 606
  • 2
  • 8
  • 26

3 Answers3

6

You can try the WebSphere Liberty 8.5.5.4 -- this supports WebSockets. See announcement here.

See also:

Gas
  • 17,601
  • 4
  • 46
  • 93
JoeyHolloway
  • 458
  • 7
  • 19
2

WAS doesn't support WebSockets as stated on an IBM forum here. What you can do is to investigate if you can deploy in WAS one of the WebSockets server implementations (check this list).

Bogdan
  • 934
  • 7
  • 13
1

You can also try embedding the Jetty Web Server on the java application to run on your WebSphere Application Server - http://www.eclipse.org/jetty/documentation/current/embedding-jetty.html. Another option is to make use of a WebSockets implementation (e.g. Wabbit), or make use of an Application Server that supports the Java EE 7 specs, like IBM WAS 9.

Marco
  • 2,445
  • 2
  • 25
  • 15