Description
Using cxf blueprint configuration, the schemaLocation attribute is ignored.
sample config in blueprint
<jaxws:endpoint id="sample-web-service" implementor="#sampleWebService" address="http://localhost:56021/services/sample"> <jaxws:schemaLocations> <jaxws:schemaLocation>schema/broken.xsd</jaxws:schemaLocation> </jaxws:schemaLocations> </jaxws:endpoint>
Looking at the code, aries blueprint parser hands over the element to org.apache.cxf.jaxws.blueprint.JAXWSBPNamespaceHandler#parse which then just returns null, because there is no parser defined for this element name.