Skip to content

Commit

Permalink
Fixes #1262 - changes the check class for Tomcat 7 Websocket support.
Browse files Browse the repository at this point in the history
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 authored and jfarcand committed Sep 3, 2013
1 parent 1b98d07 commit 25377a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,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 25377a3

Please sign in to comment.