Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-23 Thread Steinar Bang
> Markus Rathgeb : > I assume I need to use a "Web Application" and cannot rely on servlets etc. > https://osgi.org/specification/osgi.cmpn/7.0.0/service.war.html > Any change to get this mixed with Declarative Service? This is how I make webapps with apache karaf: 1. Define a service

Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-21 Thread Achim Nierbeck
Right now this only works for webbundles as their web-context is bound to a connector. Haven't tried it, but it could be bend to work with whiteboard servlets. regards, Achim Am Do., 16. Mai 2019 um 21:23 Uhr schrieb Markus Rathgeb < maggu2...@gmail.com>: > I assume I need to use a "Web

Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-16 Thread Markus Rathgeb
I assume I need to use a "Web Application" and cannot rely on servlets etc. https://osgi.org/specification/osgi.cmpn/7.0.0/service.war.html Any change to get this mixed with Declarative Service? Am Do., 16. Mai 2019 um 20:32 Uhr schrieb Markus Rathgeb : > > If this already known (WRT to the

Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-16 Thread Markus Rathgeb
If this already known (WRT to the following comment)? https://nierbeck.de/2013/01/bind-certain-web-applications-to-specific-httpconnectors/#comment-62 Am Do., 16. Mai 2019 um 20:26 Uhr schrieb Markus Rathgeb : > > Hi Łukasz, hi JB, > > thank you for that information. > > I did not found an

Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-16 Thread Markus Rathgeb
Hi Łukasz, hi JB, thank you for that information. I did not found an official documentation for that feature. I found this one (WRT the information given to me from you): * https://ops4j1.jira.com/browse/PAXWEB-396 *

Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-16 Thread Jean-Baptiste Onofré
Hi, I'm not sure it's what you are looking for, but you can configure several connectors via jetty.xml (in addition of the default one created by Pax Web), then, you can use "VirtualHost" to deploy a servlet on a specific connector. I blogged about this while ago

Re: Karaf, Pax Web, Jetty: "some" client authentication

2019-05-16 Thread Łukasz Dywicki
Can you use two sockets/connectors? Jetty stuff is configured at connector level, before even servlet is reached. I know its not a perfect solution, rather a workaround.. Best regards, Łukasz -- Code-House http://code-house.org On 16.05.2019 08:12, Markus Rathgeb wrote: > Hi, > > I assume