I am using "apache-cxf-2.2", all generated envelopes look like this:
<soap:Envelope xmlns:soap="*http://schemas.xmlsoap.org/soap/envelope/*"> but what I want is this: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> >From what I've read in the mailing list, that's what jaxb does, so that's nothing cxf can do The suggestion is to add a interceptor somewhere to put them back Anybody has an example how to implement that interceptor?
