Re: Felix Http Jetty packaging as uber bundle?

2018-07-16 Thread Eric Norman
have to be added to the bootclasspath (in which > case, they can't be provided as bundles, no)? > > regards, > > Karl > > > On Sun, Jul 15, 2018 at 11:59 PM Eric Norman > wrote: > > > > Hi Karl, > > > > Perhaps juggling the TCCL around the jetty st

Re: Felix Http Jetty packaging as uber bundle?

2018-07-14 Thread Eric Norman
org.eclipse.jetty/jetty-alpn-java-server/9.4.11.v20180605 > > > > # Alternatively, exclude the JDK8/JDK9 ALPN impl bundles and provide > > support for ALPN based on the conscrypt impl (NOTE: I haven't gotten this > >

Re: Felix Http Jetty packaging as uber bundle?

2018-07-15 Thread Eric Norman
> all anymore... > > > regards, > > Karl > > On Sunday, July 15, 2018, Eric Norman wrote: > > > Hi Carsten, > > > > I tried to make it work with an uber bundle by merging in the important > > stuff. In this case the o.a.felix.http.jetty is

Felix Http Jetty packaging as uber bundle?

2018-07-13 Thread Eric Norman
76adf9d3a445cb620d2baa9fd1155f5e25aa3ca5 Please let me know if you have any thoughts on this. Regards, Eric Norman

Re: how to enable http2 in jetty

2018-10-18 Thread Eric Norman
Yes, with a few changes to the felix.http code it is possible to make it work. I stashed the code changes in my github fork at https://github.com/enapps-enorman/felix which I think you have already discovered? I would be willing to initiate a PR from the fork, but unfortunately the http/2

Re: how to enable http2 in jetty

2018-10-20 Thread Eric Norman
s > loader, so it’s more likely to work correctly with a fat bundle than with > spi-fly. > > These are rather abstract or philosophical arguments, so they may or may > not match the reality of using jetty in any particular way. > > david jencks > > > On Oct 20, 2

Re: how to enable http2 in jetty

2018-10-20 Thread Eric Norman
;>>> Regards > > >>>>> Carsten > > >>>>> > > >>>>> Am 19.10.2018 um 09:35 schrieb Carsten Ziegeler: > > >>>>>> Hi Eric, > > >>>>>> > >

Re: Constructor injection with multivalue

2018-09-20 Thread Eric Norman
Are those the SCR annotations, or the newer official OSGi declarative service annotations? In either cause, I suppose you'd need to to adjust the cardinality property on the @Reference annotation to tell it you want multiple service references. Regards, -Eric On Thu, Sep 20, 2018 at 7:42 PM

Re: Constructor injection with multivalue

2018-09-21 Thread Eric Norman
erver.HandlerBuilder] > > > 20:12:16.285 [pipe-start 45] INFO > > c.mobigov.web.server.HandlerBuilder:31 - > > > Adding Handler for: /communication > > > 20:12:16.286 [pipe-start 45] INFO > > c.mobigov.web.server.HandlerBuilder:31 - > > > Ad

Re: Setting HSTS header with Felix Jetty HTTP Service

2020-11-23 Thread Eric Norman
I've been using a servlet filter for such things. You just need to set the appropriate headers on the response before forwarding on to the filter chain. On Mon, Nov 23, 2020 at 7:48 AM Silvano Maffeis wrote: > Dear all > > Is there a way of configuring the *Strict-Transport-Security* header in

Re: Websockets in Apache Felix / OSGi

2023-01-20 Thread Eric Norman
If you are using the "HTTP Service Jetty" implementation, then I have gotten websockets to work within an Apache Sling context by following a variation of the instructions in the jetty documentation at [1] for the WebSocket impl and [2] for an "upgrade" servlet. For the [2] upgrade servlet, I