The purpose of the Akka HTTP layer is to expose Actors to the web via HTTP and to enable them to consume HTTP services as a client.
So I have a function with this signature (akka.http.model.HttpResponse): def apply(query: Seq[(String, String)], accept: String): …
scala akka akka-httpI'm going to develop new HTTP/REST services using Scala and Akka Actors. I have experience working with Play, but …
scala playframework akka spray akka-httpI'm trying out Akka-http and hopefully someone can shed light on a the following questions: How does one create different …
scala akka akka-httpI would like to create a Source and later push elements on it, like in: val src = ... // create the Source …
scala akka akka-stream akka-httpI need to log akka http client requests as well as their responses. While there seems to be a hint …
scala akka akka-httpI know akka-http libraries marshal and unmarshal to class type while processing request.But now, I need to read request-parameters …
scala akka-stream akka-httpI'm trying to unmarshall request payload as string, but for some reason it's failing. My code: path("mypath") { post { decodeRequest { …
json scala akka-httpI've just started testing out the Akka HTTP Request-Level Client-Side API (Future-Based). One thing I've been struggling to figure out …
scala akka-http akka-testkitI am trying to use Akka-Http for invoking REST url. I am following this example from the akka documentation. Using …
scala rest akka-http