Hello

My CXF app generates request as follows:


<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
    <soap:Header>
        ...
    </soap:Header>
    <soap:Body>
        <Request
            xmlns:ns2="http://www.example.org";>
            ....
        </Request>
    </soap:Body>
</soap:Envelope>


The problem is Request tag does not have prefix "ns2".
How can I configure namespace prefix  using CXF API?
( I found only configuration via Spring -
http://cwiki.apache.org/CXF20DOC/jaxb.html)


Any help will be appreciated.

Regards,
Maciej

Reply via email to