[akka-user] How to exluce actors when using serialize-creators

2015-11-24 Thread Michi
Hi, we are using Akka for a modular application where various modules provide services. The application was initially developed without Akka. To support multiprocessing, we added special modules that can send and receive data using TCP / UDP. The application now uses Akka, but we still use our

[akka-user] Disable hostname verification

2016-02-19 Thread Michi
Hi, I have written a small HTTPS test server and client and now I try to disable hostname verification. Here is the code: object HttpsServer extends App { implicit val system = ActorSystem("system") implicit val mat = ActorMaterializer() implicit val ec = system.dispatcher val serverCo

Re: [akka-user] Disable hostname verification

2016-02-19 Thread Michi
rClass to your > custom "accept everything" classname? > > -- > Cheers, > Konrad 'ktoso’ Malawski > Akka <http://akka.io> @ Typesafe <http://typesafe.com> > > On 19 February 2016 at 16:45:55, Michi (michael...@physik.tu-muenchen.de > ) wrote:

Re: [akka-user] Disable hostname verification

2016-02-19 Thread Michi
or submit a PR that documents how to do this using > the current scheme? > Thanks a lot in advance. > > -- > Cheers, > Konrad 'ktoso’ Malawski > Akka <http://akka.io> @ Typesafe <http://typesafe.com> > > On 19 February 2016 at 17:10:58, Michi (michael

Re: [akka-user] Disable hostname verification

2016-02-22 Thread Michi
Hi Roland, > I don’t agree: if you write a program that shall have certain security > characteristics, then you must certainly test it under the same constraints > that you will run it with in production. Otherwise you run something that > you have not tested. How would you test the failure s

[akka-user] akka-http proxy support

2016-03-08 Thread Michi
Hi, we need to access a REST interface using HTTPS which is behind a proxy. The akka-http documentation states that proxy support for HTTPS connections is currently unsupported. Is there any way to use a HTTPS proxy with akka-http? If not, can someone recommend a good (Java) https client librar

Re: [akka-user] akka-http proxy support

2016-03-08 Thread Michi
ature hm... > (They're backed by the Ning Async Http Client). > > -- > Cheers, > Konrad 'ktoso’ Malawski > <http://akka.io>Akka <http://akka.io> @ Lightbend <http://typesafe.com> > <http://lightbend.com> > > On 8 March 2016 at 15:31:28, Mi

[akka-user] Akka HTTP bind exception on Windows

2016-04-05 Thread Michi
Hi, we have a problem with Akka HTTP on Windows: after creating a server binding and unbinding it, it is not possible to bind it again. We get a akka.stream.BindFailedException. On Linux, this works without problems. The application uses the following code to create the server binding: priva

Re: [akka-user] Akka HTTP bind exception on Windows

2016-04-05 Thread Michi
r the NIO windows > drivers though. > > -Endre > > On Tue, Apr 5, 2016 at 2:05 PM, Michi > wrote: > >> Hi, >> >> we have a problem with Akka HTTP on Windows: after creating a server >> binding and unbinding it, it is not possible to bind it again. W

Re: [akka-user] Akka HTTP bind exception on Windows

2016-04-05 Thread Michi
ould allow to reuse sockets that are no longer in use, even if the operating system did not unbind them yet. If there is anything I can do to help, let me know. Best regards, Michael On Tuesday, April 5, 2016 at 5:08:09 PM UTC+2, drewhk wrote: > > > > On Tue, Apr 5, 2016 at 5:04 P

Re: [akka-user] Akka HTTP bind exception on Windows

2016-04-05 Thread Michi
ables the ReuseAddress ( > http://doc.akka.io/api/akka/2.4.3/#akka.io.Inet$$SO$$ReuseAddress) option? > > -Endre > > On Tue, Apr 5, 2016 at 6:29 PM, Endre Varga > wrote: > >> But that code uses SO_REUSEADDR. >> >> -Endre >> >> On Tue, Apr 5, 2016 at

Re: [akka-user] Akka HTTP bind exception on Windows

2016-04-07 Thread Michi
wrote: >> >>> Hi, >>> >>> I'm not sure if this is related but found similar problem from another >>> project and workaround how to solve it: >>> >>> https://github.com/kaazing/nuklei/issues/20 >>> >>> -Antti >>&