Hi all, We have been trying to set up a websocket end point on Tomcat 8.
The dependency in the pom.xml is <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.2</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> </dependencies> The handshake and connection works fine, while deploying the war file on localhost, but the handshake fails when we deploy(using aws elastic beanstalk) the war file on the Tomcat server. The handshake (http) url returns a 404 Not Found Error. What would be going wrong here? Thanks