May 2015
Intermediate to advanced
274 pages
5h 11m
English
Here are the scenarios you might come across where you may need to troubleshoot:
You get this error even after you have defined the Action using a RequestHeader.
Most of the methods used in Play that deal with requests, expect an implicit RequestHeader. This convention has been followed in order to keep the code simple. For example, let's look at the controller trait here:
trait Controller extends Results with BodyParsers with HttpProtocol with Status with HeaderNames with ContentTypes with RequestExtractors with Rendering { //Provides an empty `Action` implementation: the result is a standard 'Not implemented yet' result page. val TODO = Action ...Read now
Unlock full access