play-java-websocket-example
play-java-websocket-example copied to clipboard
Example Play Java application showing Websocket usage with Akka actors
Getting 404 for http://localhost:9000/assets/stylesheets/main.min.css and http://localhost:9000/assets/javascripts/index.js When using "gradlew runPlayBinary" runs fine with "sbt run".
Current structure is a little ...how to say, messy.
in this code, how to cleanup for very slow subscribers? // and automatic cleanup for very slow subscribers (where the browser has crashed, etc).
Hi, On line 106 of file HomeController : https://github.com/playframework/play-java-websocket-example/blob/2.6.x/app/controllers/HomeController.java#L106, you are checking origin like that: ```java return origin.contains("localhost:9000") || origin.contains("localhost:19001"); ``` If someone sends an Origin header with the value...