Did somebody managed to run Websockets on Microsoft Azure WebApp-Service using Tomcat? I tried to run the Tomcat 7 chat-application-example, but I can't connect to the Websocket Endpoint. I allways receive this message:
WebSocket connection to 'ws://mywebapp.azurewebsites.net/websocket-example/websocket/chat' failed: Error during WebSocket handshake: Unexpected response code: 404
When running it locally everythings works fine. Locally and on Azure I'm using Tomcat 7 together with Java 7 (32bit) and enabled the Websocket option in the Azure App-Settings, as described here.
What else do I need to do, to get Websockets working on Azure with a Java WebApp?
Are Websockets on Azure only working with Node.js and ASP.NET?
UPDATE:
Websockets are working on Azure with Tomcat! You have to make shure that Websockets are enabled in the Azure Portal and that you select the correct Java,Tomcat and Plattform version that your .war file has been compiled for. In addition to that you have to make shure your ServerEndpoints are loaded correctly as described here!