I\'m using Scala in Play 2.0, and I\'m getting a 413 error whenever large data (over 100KB) is POSTed to a particular endpoint. It\'s using the anyContent parser, and it\'s not
Note for those using the raw parser, that one takes maximum as a parameter:
Action(parse.raw(10000 * 1024))
See the parse.raw method for more details.