Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-08-21 Thread peter janovsky
Charles, as Heiko pointed out you need to have an implicit Materializer in scope. This resolved my compilation error -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-08-20 Thread charles adetiloye
@Heiko... please how did you solve it ? On Tuesday, July 28, 2015 at 11:45:19 PM UTC-5, Heiko Seeberger wrote: You need to show the definition of routes. I assume (speculation again) that it’s a method in a different scope which doesn’t take an implicit Materializer (or EC). Heiko --

Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-07-28 Thread Heiko Seeberger
You need to show the definition of routes. I assume (speculation again) that it’s a method in a different scope which doesn’t take an implicit Materializer (or EC). Heiko -- Heiko Seeberger Home: heikoseeberger.de http://heikoseeberger.de/ Twitter: @hseeberger https://twitter.com/hseeberger

Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-07-23 Thread Kabir Idris
Yes I do have an implicit actor materializer in scope On Thu, 23 Jul 2015 6:54 pm Heiko Seeberger loe...@posteo.de wrote: Do you have an implicit Materializer in scope? Heiko -- *Heiko Seeberger* Home: heikoseeberger.de Twitter: @hseeberger https://twitter.com/hseeberger Public key:

Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-07-23 Thread Heiko Seeberger
Do you have an implicit Materializer in scope? Heiko -- Heiko Seeberger Home: heikoseeberger.de http://heikoseeberger.de/ Twitter: @hseeberger https://twitter.com/hseeberger Public key: keybase.io/hseeberger https://keybase.io/hseeberger On 23 Jul 2015, at 15:25, Kabir Idris binka...@gmail.com

Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-03-21 Thread Paul Cleary
Ugh, I hit this same issue using 1.0-M4; you still need an implicit `ActorFlowMaterializer` :( On Sunday, March 15, 2015 at 7:29:23 PM UTC-4, James Mulcahy wrote: I think you need an in-scope implicit FlowMaterializer (or perhaps an ActorFlowMaterializer, if you're on M3. I think that may

[akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-03-15 Thread Arthur Kushka
Hi. I was faced with a typical error with spray-json and akka-http that easy to find in Google, but none of solutions helps me. Scala fail compiling in place where I parsing request body with `entity` directive. As error say, they can`t find implicit value for unmarshaller, but formatter and

Re: [akka-user] Implicit value issue for FromRequestUnmarshaller in akka-http with spray-json

2015-03-15 Thread James Mulcahy
I think you need an in-scope implicit FlowMaterializer (or perhaps an ActorFlowMaterializer, if you're on M3. I think that may have been resolved in M4 though) James Sent from my iPhone On Mar 15, 2015, at 15:17, Arthur Kushka arhel...@gmail.com wrote: Hi. I was faced with a typical