Re: [akka-user] Akka-Http: How to connect a Route with an IncomingConnection?

2015-01-22 Thread Philippe Milot
Thank you! Works like a charm. I love the module so far, looks very promising! On Thursday, January 22, 2015 at 12:31:59 PM UTC-5, drewhk wrote: > > Hi, Philippe, > > On Thu, Jan 22, 2015 at 6:28 PM, Philippe Milot > wrote: > >> So I'm following the documentation on the new Akka-Http experimenta

Re: [akka-user] Akka-Http: How to connect a Route with an IncomingConnection?

2015-01-22 Thread Endre Varga
Hi, Philippe, On Thu, Jan 22, 2015 at 6:28 PM, Philippe Milot wrote: > So I'm following the documentation on the new Akka-Http experimental > modules, and I'm trying to get a basic Hello World using the Routing DSL. > > I've defined my route as follows: > > val route: Route = { > complete(

[akka-user] Akka-Http: How to connect a Route with an IncomingConnection?

2015-01-22 Thread Philippe Milot
So I'm following the documentation on the new Akka-Http experimental modules, and I'm trying to get a basic Hello World using the Routing DSL. I've defined my route as follows: val route: Route = { complete(HttpResponse(entity = "Hello, world!")) } I can bind and accept HTTP connection