Re: [akka-user] Re: Akka Java IO TLS

2016-08-08 Thread Vinay Gajjala
Thank you for the response. I will surely try your suggestions. I thought I might not have explained my problem clearly so I created another post with more details you can search this string ("Akka v2.3.14 with Java 7 - TLS configuration") to find it in the group Regards Vinay On Thursday,

[akka-user] Akka v2.3.14 with Java 7 - TLS configuration

2016-08-08 Thread Vinay Gajjala
Hi I am a newbie in Akka and I implemented a TCP server which listens to device traffic. I have searched online and could not find any concrete examples of how to configure TLS using Akka IO. I am not sure if I am missing the obvious. I have asked this question earlier but without providing

[akka-user] Re: Tcp TLS example with client auth

2016-07-26 Thread Vinay Gajjala
Hello Magnus This is not an answer to your problem but I am trying to get an answer to my problem. I am working on a POC developing a TCP server which listens on device traffic. I was able to implement the server using Akka IO (v2.3.14) and trying to figure out how to configure TLS for this

[akka-user] Re: Akka Java IO TLS

2016-07-21 Thread Vinay Gajjala
After rethinking and researching was wondering if I can configure/code the netty API which Akka uses to achieve the TLS. I am now sure how efficient is this. Any help would be greatly appreciated Thanks Vinay On Monday, July 18, 2016 at 11:13:33 AM UTC-5, Vinay Gajjala wrote: > > Hi &g

[akka-user] Akka Java IO TLS

2016-07-18 Thread Vinay Gajjala
Hi I am a newbie in Akka and I implemented a TCP server which listens to device traffic. I have searched online and could not find any concrete examples of how to configure TLS using Akka IO. I am not sure if I am missing the obvious. Thanks in advance, Vinay -- >> Read the

Re: [akka-user] Akka - TCP - Byte level control

2016-06-21 Thread Vinay Gajjala
l#Streaming_TCP > > http://doc.akka.io/docs/akka/2.4.7/scala/stream/stream-composition.html > > On Fri, Jun 17, 2016 at 11:11 PM, Vinay Gajjala <vgaj...@gmail.com > > wrote: > >> Hello >> >> I am trying to implement a lower level TCP server using Akka. What I me

Re: [akka-user] Akka - Accessing cache using Actor .tell() and make decision based on the cache value

2016-06-21 Thread Vinay Gajjala
he status in the caller to conciliate > request and response or passing a context/status along the exchanged > messages as it happen on the ddata protocol. > On 17 Jun 2016 22:20, "Vinay Gajjala" <vgaj...@gmail.com> wrote: > >> Hi >> >> I am trying to w

[akka-user] Akka - Accessing cache using Actor .tell() and make decision based on the cache value

2016-06-17 Thread Vinay Gajjala
Hi I am trying to write actors to encapsulate the cache access by the code. In one of the use case I need to make a decision based on the value in the cache. I am trying not to use the ask() instead I want to use tell(). I like to know is it possible to use tell() if so how ? If you can

[akka-user] Akka - TCP - Byte level control

2016-06-17 Thread Vinay Gajjala
Hello I am trying to implement a lower level TCP server using Akka. What I mean is when the server receives bytes it should be able to make decisions on the number of bytes received or the byte itself (like determine if its end of the message etc this could depend on the protocol definition).