2

我需要在wildfly 9中通过websocket配置STOMP。到目前为止我做了什么,

  1. 在互联网上获得帮助后,我在standalone-full.xml 中添加了连接器/接受器,用于通过 websocket 配置 STOMP。配置如下所示:

并为其添加套接字绑定(端口 61614)。

有了这个配置,wildfly 9 就启动了。但我无法通过 websocket 连接到 STOMP。尝试通过 ws://localhost:61614/stomp 使用 java websocket 客户端进行连接。但无法使用相同的连接。我还尝试使用 javascript STOMP 客户端库进行连接。但结果是相同的,无法使用相同的连接。(如此处所述,http://jmesnil.net/stomp-websocket/doc/

现在,在此之后,我尝试在接受器配置上添加 STOMP_WS 协议:

但是当我用这个启动Wildfly 9时,我会导致错误提示“错误实例化远程接受器org.hornetq.core.remoting.impl.netty.Netty.NettyAcceptorFactory:HornetQException [errorType = GENERIC_EXCEPTION message = HQ119085:Classpath缺少协议管理器对于协议 STOMP_WS]"

另一件事是当我启动 wildfly 9 时,我在日志中看到以下行,

10:37:33,866 INFO [org.hornetq.core.server] (ServerService 线程池 -- 64) HQ221043: 添加协议支持 CORE 10:37:33,878 INFO [org.hornetq.core.server] (ServerService 线程池 -- 64) HQ221043: 添加协议支持 AMQP 10:37:33,881 INFO [org.hornetq.core.server] (ServerService Thread Pool -- 64) HQ221043: 添加协议支持STOMP

但我认为 STOMP_WS 协议不同。

所以我的问题是,1.如何在wildfly 9中配置STOMP_WS?2.如果我只用netty连接器/接受器配置STOMP,那是否意味着它是基于websocket的STOMP?

我已经在 Wildfly 8,9 和 10 中尝试了所有这些,并且在每个版本中都观察到了相同的情况。

很感谢任何形式的帮助!!

4

1 回答 1

2

在 Wildfly 9 中更改 Netty jar 后,此问题已得到修复。之前它是 netty-all-4.0.26.Final.jar。我将其替换为 netty-all-4.0.13.Final.jar。现在我可以使用以下配置通过 websocket 连接到 STOMP:

                <netty-acceptor name="netty-acceptor" socket-binding="netty">
                    <param key="protocols" value="STOMP"/>
                </netty-acceptor>

注意:我没有使用 STOMP_WS 协议。

于 2016-04-25T11:30:29.410 回答