Re: [akka-user] Basic Akka stream server not receiving data sent by client

2016-08-19 Thread chhil
Thanks Endre, Helpers or a couple of lines in the Akka documentation. Which BTW is a great resource. -chhil On Fri, Aug 19, 2016, 4:47 PM Akka Team wrote: > Hi, > > On Fri, Aug 19, 2016 at 12:41 PM, murtuza chhil wrote: > >> Thank you for the

Re: [akka-user] Basic Akka stream server not receiving data sent by client

2016-08-19 Thread Akka Team
Hi, On Fri, Aug 19, 2016 at 12:41 PM, murtuza chhil wrote: > Thank you for the pointer. > > Changed it to the following > ```java > final List options = new ArrayList() > ; > Source > serverSource = Tcp > >

Re: [akka-user] Basic Akka stream server not receiving data sent by client

2016-08-19 Thread murtuza chhil
Thank you for the pointer. Changed it to the following ```java final List options = new ArrayList(); Source serverSource = Tcp .get(system).bind("127.0.0.1",6000,100,options,true,Duration.create(5, TimeUnit.MINUTES)); ``` Now I get

Re: [akka-user] Basic Akka stream server not receiving data sent by client

2016-08-19 Thread Akka Team
On Sun, Aug 14, 2016 at 2:18 PM, murtuza chhil wrote: > Hi, > > I have a simple client that reads a csv file and send it across. When I > have a netcat server I can see the data come through. > > However when I have a Akka stream based server I do see the connection but > I

[akka-user] Basic Akka stream server not receiving data sent by client

2016-08-14 Thread murtuza chhil
Hi, I have a simple client that reads a csv file and send it across. When I have a netcat server I can see the data come through. However when I have a Akka stream based server I do see the connection but I don't see the data come through. Could someone be kind enough to let me know where I