[akka-user] [Akka Http] Route parameters in low level API

2016-02-15 Thread Matthieu Ravey
Hi, I'm trying to figure out of to extract part of an URL with the low level API. Basically what I'd like to do is: 1. val requestHandler: HttpRequest => HttpResponse = { 2. case HttpRequest(GET, Uri.Path("/my_path/:parameter"), _, _, _) => 3. HttpResponse(StatuCodes.OK) 4. } and

Re: [akka-user] Akka Http Websocket

2016-02-10 Thread Matthieu Ravey
It seems to fix the issue. Thanks On Wednesday, February 10, 2016 at 10:23:35 AM UTC+1, drewhk wrote: > > Please try 2.4.2-RC2 first if possible, it contains some fixes that have > been not yet backported to the 2.0.x line. > > On Wed, Feb 10, 2016 at 9:39 AM, Matthieu Ravey <

Re: [akka-user] Akka Http Websocket

2016-02-10 Thread Matthieu Ravey
Hi Endre, I'm using the latest version 2.0.3. Matthieu On Tuesday, February 9, 2016 at 5:17:36 PM UTC+1, drewhk wrote: > > Hi Mattieu, > > Which version are you using? > > -Endre > > On Tue, Feb 9, 2016 at 4:34 PM, Matthieu Ravey <ravey...@gmail.com > > wrot

[akka-user] Akka Http Websocket

2016-02-09 Thread Matthieu Ravey
Hi, I have an issue with akka http and websocket. I'm using connection.handleWithAsyncHandler and my websocket connection is closed just after being opened. I've posted the issue on stackoverflow with code snippets: http://stackoverflow.com/questions/35274125/websocket-with-async-handler