Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
we are experiencing a similar problem to this topic (https://community.qlik.com/t5/Design-and-Development/tHMap-move-namespace-from-elements-to-root-stru...) but the solution proposed does not work.
This is the expected result:
<soap:Envelope xmlsn:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ser:getLinesOutputBody xmlns:cmn="http://www.example.com/schemas/common" xmlns:ser="http://www.example.com/services/getLines"> <status> <cmn:code>200</cmn:code> <cmn:subCode>200</cmn:subCode> </status> <content> </content> </ser:getLinesOutputBody> </soap:Body> </soap:Envelope>
<soap:Envelope xmlsn:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ser:getLinesOutputBody xmlns:ser="http://www.example.com/services/getLines"> <status> <cmn:code xmlns:cmn="http://www.example.com/schemas/common">200</cmn:code> <cmn:subCode xmlns:cmn="http://www.example.com/schemas/common">200</cmn:subCode> </status> <content> </content> </ser:getLinesOutputBody> </soap:Body> </soap:Envelope>