Questions tagged [akka-http]

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. It is not an HTTP framework, it is an Actor-based toolkit for interacting with web services and clients.

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. It is not an HTTP framework, it is an Actor-based toolkit for interacting with web services and clients.

More Info:

1489 questions
-2
votes
2 answers

could not find implicit value for parameter um: akka.http.scaladsl.unmarshalling.FromRequestUnmarshaller[class]

i am new to akka http and i am having difficulty in marshalling and un-marshalling of my case class here is my code case class Event(uuid:String) //main class class demo { val route: Route = post { path("create-event") { …
swaheed
  • 3,671
  • 10
  • 42
  • 103
-3
votes
1 answer

set header as accept and value as application/json in Requestbuilding in play framework and scala Akka-type

beans.scala - class contains connection to server lazy val ConnectionFlow: Flow[HttpRequest, HttpResponse, Any] = Http().outgoingConnection(config.getString("host"), config.getInt("port")) lazy val AppService = new Service(config,…
-3
votes
1 answer

convert ByteString to Json using java

I am getting response from Rest as : {"id":81236,"root":0,"child":3,"branch":0,"results":[{"message":"valid"},{"message":"valid"}} I want to convert it into JsonObject using java 8. I am trying JsonObject but i stucked with the POJO , because…
avy
  • 417
  • 1
  • 9
  • 21
1 2 3
99
100