How to map SOAP response when receiving it as a string

0
I receive the current string message from a REST endpoint: <?xml version="1.0"?> <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> <env:Body> <GetByKeyResponse xmlns="http://www.sap.com/SBO/DIS"> <BOM> <BO> <AdmInfo> <Object>oBusinessPartners</Object> </AdmInfo> <BusinessPartners> <row> <CardCode>123456</CardCode> <CardName>Test B.V.</CardName> <CardType>cCustomer</CardType> <GroupCode>104</GroupCode> </row> </BusinessPartners> </BO> </BOM> </GetByKeyResponse> </env:Body> </env:Envelope> I'm not sure how to map this, as I can't seem to provide a proper XSD for the namespace tages/env: tags. What would be the best way to support his?
asked
1 answers
0

What I did is making a Java action that converted the string to an xml, and then importing the xml in the regular way.

Regards,

Ronald

answered