我有两个使用Spring websockets进行通信的Java应用程序。我使用ActiveMQ版本5.12.3。我在TomEE服务器上运行应用程序。这是我在tomee.xml中用于ActiveMQ的配置:
<Resource id="MyAppMessageBus" type="ActiveMQResourceAdapter">
BrokerXmlConfig = broker:(tcp://localhost:61616,ws://0.0.0.0:61614,stomp://0.0.0.0:61613)
ServerUrl = tcp://localhost:61616
</Resource>
这是我连接的Java代码:
if (brokerUrl.startsWith("ws")) {
WebSocketClient transport = new StandardWebSocketClient();
stompClient = new WebSocketStompClient(transport);
}
stompClient.setMessageConverter(new MappingJackson2MessageConverter());
stompClient.setTaskScheduler(taskScheduler);
stompClient.setDefaultHeartbeat(heartbeat);
stompClient.connect(brokerUrl, handler);
我可以使用以下代理网址成功连接:ws:// localhost:61614
我想做的是使用安全的websockets连接。当我更改tomee.xml中的url以使用wss://并在我的代码中更新brokerurl时,我得到以下异常:
javax.websocket.DeploymentException: The HTTP request to initiate the WebSocket connection failed
at org.apache.tomcat.websocket.WsWebSocketContainer.connectToServer(WsWebSocketContainer.java:434) ~[tomcat7-websocket.jar:7.0.68]
at org.springframework.web.socket.client.standard.StandardWebSocketClient$1.call(StandardWebSocketClient.java:152) ~[spring-websocket-4.2.5.RELEASE.jar:4.2.5.RELEASE]
at org.springframework.web.socket.client.standard.StandardWebSocketClient$1.call(StandardWebSocketClient.java:149) ~[spring-websocket-4.2.5.RELEASE.jar:4.2.5.RELEASE]
at java.util.concurrent.FutureTask.run(FutureTask.java:262) ~[na:1.7.0_80]
at java.lang.Thread.run(Thread.java:745) [na:1.7.0_80]
Caused by: java.util.concurrent.ExecutionException: java.net.ConnectException: Connection refused
at sun.nio.ch.PendingFuture.get(PendingFuture.java:202) ~[na:1.7.0_80]
at org.apache.tomcat.websocket.WsWebSocketContainer.connectToServer(WsWebSocketContainer.java:376) ~[tomcat7-websocket.jar:7.0.68]
... 4 common frames omitted
Caused by: java.net.ConnectException: Connection refused
at sun.nio.ch.UnixAsynchronousSocketChannelImpl.checkConnect(Native Method) ~[na:1.7.0_80]
at sun.nio.ch.UnixAsynchronousSocketChannelImpl.finishConnect(UnixAsynchronousSocketChannelImpl.java:252) ~[na:1.7.0_80]
at sun.nio.ch.UnixAsynchronousSocketChannelImpl.finish(UnixAsynchronousSocketChannelImpl.java:198) ~[na:1.7.0_80]
at sun.nio.ch.UnixAsynchronousSocketChannelImpl.onEvent(UnixAsynchronousSocketChannelImpl.java:213) ~[na:1.7.0_80]
at sun.nio.ch.EPollPort$EventHandlerTask.run(EPollPort.java:293) ~[na:1.7.0_80]
... 1 common frames omitted
有谁知道启用安全websockets的简单方法?我是否需要在我的代码中添加额外的传输或添加到我的服务器配置?
答案 0 :(得分:0)
在代理配置中,您需要服务器端的“wss:// ...”传输连接器。
答案 1 :(得分:0)
activemq不通过标准协议支持websocket,而只支持jetty(参见https://github.com/apache/activemq/blob/master/activemq-http/src/main/java/org/apache/activemq/transport/ws/WSTransportServer.java)
你在那里几乎没有选择: