Playframework Invalid Protocol MessageExceptionException
I have a strange phenomenon:
If I run a blank index.html page with this controller:
public class Application extends Controller {
public static void index() {
render();
}
}
I can't see the index page, but I get a prompt to upload a file with this content:
FHcodeProtocolExceptionmessageinvalid message tagZ
What's the magic here?
0
eriq
source
to share
1 answer
Try changing the HTTP port in your application.conf (default is 9000).
0
Agnes
source
to share