有没有办法在IBM WebSphere Application Server上使用WebSockets?

时间:2013-01-23 18:56:29

标签: java websocket websphere-7

我正在使用WebSocket Servlets将基于Apache Tomcat 7.0.35的Web应用程序迁移到IBM WebSphere Application Server(WAS)。问题是我不认为WAS支持WebSockets。

3 个答案:

答案 0 :(得分:6)

您可以尝试使用WebSphere Liberty 8.5.5.4 - 它支持WebSockets。见公告here

另见:

答案 1 :(得分:1)

WAS不支持IBM论坛here中所述的WebSockets。您可以做的是调查是否可以在WAS中部署一个WebSockets服务器实现(请查看此list)。

答案 2 :(得分:0)

您还可以尝试在Java应用程序上嵌入Jetty Web Server以在WebSphere Application Server上运行 - http://www.eclipse.org/jetty/documentation/current/embedding-jetty.html。另一个选择是使用WebSockets实现(例如Wabbit),或者使用支持Java EE 7规范的Application Server,例如IBM WAS 9。