Skip to content

Commit

Permalink
Fixes Atmosphere#1262 - changes the check class for Tomcat 7 Websocke…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
bleathem committed Aug 30, 2013
1 parent f9a8e8a commit b13b143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public class DefaultAsyncSupportResolver implements AsyncSupportResolver {
public final static String SERVLET_30 = "javax.servlet.AsyncListener";
public final static String GLASSFISH_V2 = "com.sun.enterprise.web.PEWebContainer";
public final static String TOMCAT_7 = "org.apache.catalina.comet.CometFilterChain";
public final static String TOMCAT_WEBSOCKET = "org.apache.catalina.websocket.WebSocketServlet";
public final static String TOMCAT_WEBSOCKET = "org.apache.coyote.http11.upgrade.UpgradeInbound";
public final static String TOMCAT = "org.apache.coyote.http11.Http11NioProcessor";
public final static String JBOSS_5 = "org.jboss.";
public final static String JETTY = "org.mortbay.util.ajax.Continuation";
Expand Down

0 comments on commit b13b143

Please sign in to comment.