I am calling a webservice like this:
WS .url(url) .get .map { response => // error occurs on this line response.status match { case 200 =>
According to this issue, it is fixed in the documentation. I needed to add the following import:
import play.api.libs.concurrent.Execution.Implicits._