admin管理员组文章数量:1344422
I am learning about websockets and followed the instructions here: .html
I' using tomcat v8.0.21 to deploy my webapp but get the following error
My JavaScript Project looks fine, when I visit the webapp: my localhost and visit WebSocketJavaScriptProject
Although in the console window get the error: WebSocket connection to 'ws://localhost:8080/WebsocketHome/actions' failed: Error during WebSocket handshake: Unexpected response code: 404
My code lives here:
Difference between my app and the example on Oracle is I have split it as two projects one service and the other webapp.
I cannot figure out why I would be getting a 404 as the service .war file is called WebsocketHome. Any ideas what would be causing this issue? Usually a 404 is not found so guessing it cannot finding the service , i'm sure i'm doing something stupid but cannot figure out where the problem is
Thanks
I am learning about websockets and followed the instructions here: http://www.oracle./webfolder/technetwork/tutorials/obe/java/HomeWebsocket/WebsocketHome.html
I' using tomcat v8.0.21 to deploy my webapp but get the following error
My JavaScript Project looks fine, when I visit the webapp: my localhost and visit WebSocketJavaScriptProject
Although in the console window get the error: WebSocket connection to 'ws://localhost:8080/WebsocketHome/actions' failed: Error during WebSocket handshake: Unexpected response code: 404
My code lives here: https://github./darkcloudi/WebSocketProject
Difference between my app and the example on Oracle is I have split it as two projects one service and the other webapp.
I cannot figure out why I would be getting a 404 as the service .war file is called WebsocketHome. Any ideas what would be causing this issue? Usually a 404 is not found so guessing it cannot finding the service , i'm sure i'm doing something stupid but cannot figure out where the problem is
Thanks
Share Improve this question asked May 28, 2015 at 8:23 samsam 1132 gold badges4 silver badges12 bronze badges 2-
What happens when you visit
ws://localhost:8080/WebsocketHome/actions
via your browser ? – Bellash Commented May 28, 2015 at 8:28 - I'm using latest Chrome and get "This webpage is not available" ERR_DISALLOWED_URL_SCHEME – sam Commented May 28, 2015 at 8:29
2 Answers
Reset to default 7The Error during the handshake happens, because Tomcat has its own api for websockets. Thus you might have added the JSR implementation or something similar as javax.websocket-api in your pom.xml there es a conflict at runtime.
Try to not export your Websocket-library to your webserver, thus it uses its own implementation.
If you use maven, set the websocket dependency as provided:
<!-- Provided Websocket API, because tomcat has its own implementation -->
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
I also had the same problem. Try removing the unwanted jars which contains websocket in your $JAVA_HOME/lib folder. and then add only what you are importing in serverendpoint file.
本文标签: javaWebSocket handshake Unexpected response code 404 Stack Overflow
版权声明:本文标题:java - WebSocket handshake: Unexpected response code: 404 - - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698616a2523930.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论