[osgi-dev] Loading xxxApp contents has encountererd NPE

2019-01-29 Thread Paul F Fraser via osgi-dev
Hi, Now heavily into new enRoute, I am getting quite regularly (multiple) NPEs during build. Does not seem to affect runtime. Is this a normal situation or should I look for a problem in my code? Any clues? Paul Fraser ___ OSGi Developer Mail

[osgi-dev] Limks to R7 ionline spec

2019-01-29 Thread Paul F Fraser via osgi-dev
Hi, Who or how do I tell someone that the page https://www.osgi.org/developer/specifications/ needs links to the online spec. The bugs and issues area  seems difficult to use without further study. A low friction way to report these, relatively minor, but annoying aspects of the search for

[osgi-dev] Prototype scope components and Fluent builder

2019-01-29 Thread Alain Picard via osgi-dev
I am curious if there is a prescribed or suggested approach to use fluent builder in conjunction with Fluent builders? Cheers, Alain ___ OSGi Developer Mail List osgi-dev@mail.osgi.org https://mail.osgi.org/mailman/listinfo/osgi-dev

Re: [osgi-dev] ContainerRequestFilter/ContainerResponseFilter life cycle

2019-01-29 Thread Nhut Thai Le via osgi-dev
Thank you for clarifying. Thai On Tue, Jan 29, 2019 at 10:24 AM Tim Ward wrote: > Hi, > > As described in the JAX-RS Whiteboard spec > > JAX-RS > extension instances are required to be singletons (I’m talking

Re: [osgi-dev] ContainerRequestFilter/ContainerResponseFilter life cycle

2019-01-29 Thread Tim Ward via osgi-dev
Hi, As described in the JAX-RS Whiteboard spec JAX-RS extension instances are required to be singletons (I’m talking about the objects, not the services) by the JAX-RS specification itself. Therefore within an

Re: [osgi-dev] ContainerRequestFilter/ContainerResponseFilter life cycle

2019-01-29 Thread Raymond Auge via osgi-dev
I'm going to assume you are talking about: HttpService[1] or Http Whiteboard[2] w.r.t. the reference to Servlet AND JAX-RS Whiteboard[3] w.r.t. the reference to ContainerRequestFilter These 2(3) features are separate concerns and the ContainerRequestFilter of the JAX-RS whiteboard spec doesn't

[osgi-dev] ContainerRequestFilter/ContainerResponseFilter life cycle

2019-01-29 Thread Nhut Thai Le via osgi-dev
Hello, I have a component implementing ContainerRequestFilter to intercept REST calls and another component implements servlet.Filter. Both have PROTOTYPE scope, my understanding is that these filter are instantiated and activated for each web request but yesterday when i put some breakpoints in