Re: cxf jaxrs Manually configure of ServiceClass

2018-11-21 Thread Vassilis Virvilis
Thanks for the pointer. Looks like I have to do my own JAXRSServerFactoryBean. Looks like the objects coming out of this factory are immutable because I cannot find a way to configure a Server(of serviceClass) __after__ it has been created by web.xml parsing. All the options are on the factory

Re: cxf jaxrs Manually configure of ServiceClass

2018-11-21 Thread James Carman
It is indeed possible: https://github.com/jaxxy-rs/jaxxy/blob/master/test/src/main/java/org/jaxxy/test/JaxrsTestCase.java This should give you enough inspiration for what you're trying to do. On Wed, Nov 21, 2018 at 8:39 AM Vassilis Virvilis wrote: > > Hi, > > I am not using Spring > > I am inte

cxf jaxrs Manually configure of ServiceClass

2018-11-21 Thread Vassilis Virvilis
Hi, I am not using Spring I am interested in manually configuring individual serviceClasses (i.e. for adding Providers per serviceClass). This is possible with spring but looks impossible without spring. Is there a way to do it? I tried to access the Endpoints/ServiceClasses after they have