-
-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for #325 [websocket] WebSocket + Comet issue using the Http11NioP…
…rotocol
- Loading branch information
Showing
4 changed files
with
280 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
...les/cpr/src/main/java/org/atmosphere/container/Tomcat7BlockingIOSupportWithWebSocket.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright 2012 Jeanfrancois Arcand | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.atmosphere.container; | ||
|
||
import org.atmosphere.cpr.AtmosphereConfig; | ||
import org.atmosphere.cpr.AtmosphereFramework; | ||
import org.atmosphere.cpr.AtmosphereRequest; | ||
import org.atmosphere.cpr.AtmosphereResponse; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import javax.servlet.ServletException; | ||
import java.io.IOException; | ||
|
||
/** | ||
* Tomcat's WebSocket support. This code has been adapted from {@link org.apache.catalina.websocket.WebSocketServlet} | ||
*/ | ||
public class Tomcat7BlockingIOSupportWithWebSocket extends Servlet30CometSupport implements TomcatWebSocketUtil.Delegate { | ||
private static final Logger logger = LoggerFactory.getLogger(Tomcat7BlockingIOSupportWithWebSocket.class); | ||
private static final long serialVersionUID = 1L; | ||
|
||
public Tomcat7BlockingIOSupportWithWebSocket(AtmosphereConfig config) { | ||
super(config); | ||
} | ||
|
||
@Override | ||
public AtmosphereFramework.Action service(AtmosphereRequest req, AtmosphereResponse res) throws IOException, ServletException { | ||
return TomcatWebSocketUtil.doService(req, res, this, config); | ||
} | ||
|
||
public AtmosphereFramework.Action doService(AtmosphereRequest req, AtmosphereResponse res) throws IOException, ServletException { | ||
return super.service(req, res); | ||
} | ||
|
||
@Override | ||
public boolean supportWebSocket() { | ||
return true; | ||
} | ||
} | ||
|
Oops, something went wrong.