Description
If you set the XML catalog to the JAXBElementProvider using the new attribute 'catalogLocation' and setup the jaxrs:schemaLocations in jaxrs:server bean before setting up the jaxrs:providers including the JAXBElementProvider the evaluation of the schemaLocations in org.apache.cxf.jaxrs.utils.schemas.SchemaHandler#createSchema line 81+ will not use the catalogLocation because of it is null.
Workaround: First, setup the jaxrs:providers, then setup the jaxrs:schemaLocations. So the order of the elements is important.
Proposal: Evaluate the providers element before evaluating the schemaLocations element.