2

我在 32 位 Windows XP 和 64 位 Debian 6.0.5 Linux 上安装了 Apache Tomcat 7.0.29,并尝试使用 websocket 示例。但它们运行不正确。我什至无法连接到服务器。

使用 echo 示例(选择消息 API)并按下 Connect 按钮没有任何反应。但 20 秒后,日志文本区域中出现“WebSocket 连接关闭”消息。但正如其他文章所述,这是一个已知问题。

在使用自制的 websocket 应用程序并尝试连接服务器时,我注意到打印了 MessageInbound#onOpen 方法的日志语句,因此调用了该方法。但是,浏览器 Javascript 部分中的 onopen 回调没有触发。但是在终止 tomcat 实例之后直接调用客户端 onopen,紧接着是 onclose。

有没有人可以确认这个或类似的行为?或者有没有人得到在 Tomcat 7 上工作的 websocket 示例?谢谢你的帮助。

更新:我为我自己创建的示例应用程序添加了代码。

这是服务器部分,WebSocketTestServlet.java:

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;

import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServletRequest;

import org.apache.catalina.websocket.MessageInbound;
import org.apache.catalina.websocket.StreamInbound;
import org.apache.catalina.websocket.WebSocketServlet;
import org.apache.catalina.websocket.WsOutbound;

@WebServlet(value = "/websocket", loadOnStartup = 1)
public class WebSocketTestServlet extends WebSocketServlet
{
    private static final long serialVersionUID = 1L;

    @Override
    protected StreamInbound createWebSocketInbound(String subProtocol, HttpServletRequest request)
    {
        return new WebSocketTestInbound();
    }

    public static final class WebSocketTestInbound extends MessageInbound
    {
        @Override
        protected void onOpen(WsOutbound outbound)
        {
            System.out.println("WebSocketTestServlet#onOpen");
        }

        @Override
        protected void onClose(int status)
        {
            System.out.println("WebSocketTestServlet#onClose");
        }

        @Override
        protected void onBinaryMessage(ByteBuffer message) throws IOException
        {
            System.out.println("WebSocketTestServlet#onBinaryMessage received: " + message);
        }

        @Override
        protected void onTextMessage(CharBuffer message) throws IOException
        {           
            System.out.println("WebSocketTestServlet#onTextMessage received: " + message);
        }
    }
}

这里是唯一的 JSF facelet main.xhtml:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en"
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html">

    <h:head>
        <title>Test suite</title>
        <script type="text/javascript">

        var ws = null;

        function connect()
        {
            var wsUrl = $('#id_wsUrl');
            var wsMsg = $('#id_wsMsg');
            var wsSnd = $('#id_wsSnd');
            var wsCon = $('#id_wsCon');
            var url = wsUrl.val();

            // Connect
            if (ws == null)
            {
                if (window.WebSocket)
                    ws = new WebSocket(url);
                else if (window.MozWebSocket)
                    ws = new MozWebSocket(url);
                else
                {
                    alert('WebSocket not supported by this browser');
                    return;
                }

                ws.onopen = function()
                {
                    alert('Connection opened!');
                    wsMsg.removeAttr('disabled');
                    wsSnd.removeAttr('disabled');
                    wsUrl.attr('disabled', 'disabled');
                    wsCon.val('Disconnect');
                };

                ws.onclose = function()
                {
                    alert('Connection closed!');
                    wsMsg.attr('disabled', 'disabled');
                    wsSnd.attr('disabled', 'disabled');
                    wsUrl.removeAttr('disabled');
                    wsCon.val('Connect');
                };

                ws.onmessage = function(event)
                {
                    console.log('Inbound message: ' + event.data);
                    alert('Inbound message: ' + event.data);
                };

                ws.onerror = function()
                {
                    alert('Connection error!!!');
                };
            }
            // Disconnect
            else
            {
                ws.close();
                ws = null;
            }
        }

        function sendMessage()
        {
            if (ws)
            {
                var wsMsg = $('#id_wsMsg');
                var data = wsMsg.val();
                wsMsg.val('');

                if (data.length > 0)
                    ws.send(data);
            }
        }

        </script>
    </h:head>
    <h:outputScript target="head" library="js" name="jquery-1.8.0.js" />
    <h:body>
        <h1>WebSocket tests</h1>
        <h:panelGrid columns="2">
            <h:outputLabel for="id_wsUrl" value="WebSocket server URL:" />
            <h:panelGroup>
                <h:inputText id="id_wsUrl" style="width: 250px;" value="ws://localhost:8080/Testapp/websocket" />
                <h:commandButton type="button" id="id_wsCon" value="Connect" onclick="connect();" />
            </h:panelGroup>
            <h:outputLabel for="id_wsMsg" value="WebSocket outbound message" />
            <h:panelGroup>
                <h:inputText id="id_wsMsg" style="width: 250px;" value="" disabled="true" />
                <h:commandButton type="button" id="id_wsSnd" value="Send" disabled="true" onclick="sendMessage();" />
            </h:panelGroup>
        </h:panelGrid>
    </h:body>
</html>

我不知道如何,但我希望它有助于获得代码。

塞巴斯蒂安

4

4 回答 4

10

WebSocketServlet现在不推荐使用扩展,即使在 Tomcat 7 中也是如此。由于 Tomcat 7.0.47提供了标准,这意味着您可以通过使用类上的注释javax.websocket-api轻松创建 websocket 端点。确保将依赖项设置为提供@ServerEndpoint

尝试直接启动 Tomcat,因为在 Apache 或 IIS 之后作为代理运行也会导致问题。

于 2013-12-19T09:46:42.477 回答
1

首先,确保你的tomcat版本支持websocket。我建议使用 7.0.42 或更高版本。

比第二个,你可以参考这个websocket 的示例代码来开始使用。它的退出很简单。

于 2013-12-30T11:53:38.643 回答
1

到 \apache-tomcat-server-folder\lib\ 并复制 tomcat7-websocket.jar、websocket-api.jar 并粘贴到项目的构建路径中并删除所有以前的 websocket jar。

于 2019-02-22T10:12:00.320 回答
0

我没有使用 Apache Tomcat WebSocket 实现。但是,当我之前看到这种类型的错误时,它通常表明客户端正在尝试连接到没有启用 WebSocket 升级的常规 HTTP 服务器端点。这可能与您的 Tomcat 配置(web.xml)有关,而不是与服务器代码本身有关。

换句话说,您的客户端正在尝试连接,ws://localhost:8080/Testapp/websocket但您的服务器可能未配置为在该位置响应 WebSocket 升级。也许它实际上是ws://localhost:8080/websocketws://localhost:8080/Testapp/websocket.do

于 2012-09-07T12:49:39.147 回答