You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 7.2.2.Final release of jbossweb now includes the class org.apache.catalina.websocket.WebSocketServlet. This is the class used to test for the presence of Tomcat 7 websockets on the class path. This check leads to a false positive, and later blows up with a ClassNotFoundException for the org.apache.coyote.http11.upgrade.UpgradeInbound class.
A reasonable resolution for this issue would appear to be to replace the check for the WebSocketServlet class with one for UpgradeInbound in the check for support of Tomcat 7 Websockets.
Note: This issue was initially reported in the RichFaces issue: RF-13154, but will likely affect any application that uses Atmosphere with jbossweb 7.2.2.Final
The text was updated successfully, but these errors were encountered:
…t support.
The check for the WebSocketServlet class is replaced with a check for the UpgradeInbound class in the check for support of Tomcat 7 Websockets.
The 7.2.2.Final release of jbossweb now includes the class org.apache.catalina.websocket.WebSocketServlet. This is the class used to test for the presence of Tomcat 7 websockets on the class path. This check leads to a false positive, and later blows up with a ClassNotFoundException for the org.apache.coyote.http11.upgrade.UpgradeInbound class.
A reasonable resolution for this issue would appear to be to replace the check for the WebSocketServlet class with one for UpgradeInbound in the check for support of Tomcat 7 Websockets.
The text was updated successfully, but these errors were encountered: