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 reasonable to use any other parser for this particular API.
There are other questions on Stack Overflow that show how to increase the maximum POST size for text or JSON requests. How do I do it for anyContent, or just increase the limit project-wide?