Here is what I get:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
        <soap:Header/>
        <soap:Body>
                <ns1:submitProposal 
xmlns:ns1="http://www.mycompany.com/services";>
                        <SubmitProposalRequest
                                
xmlns="http://www.mycompany.com/service/offer/proposal";>
                                <proposalId>1234</proposalId>
                        </SubmitProposalRequest>
                </ns1:submitProposal>
        </soap:Body>
</soap:Envelope>

This is the expected result:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
        <soap:Header/>
        <soap:Body>
                <SubmitProposalRequest
                        xmlns="http://www.mycompany.com/service/offer/proposal";>
                        <proposalId>1234</proposalId>
                </SubmitProposalRequest>
        </soap:Body>
</soap:Envelope>
-- 
View this message in context: 
http://camel.465427.n5.nabble.com/CxfBinding-Document-Style-tp1045363p1045367.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to