0

I have two destinations now and the first calls a SOAP webservice. I want to take the response of that destination by:

msg = new XML(responseMap.get('Destination1').getMessage());

and convert it to a mutable XML object. Doing:

logger.error(msg);

<S:Body><PRPA_IN201306UV02> ... </PRPA_IN201306UV02></S:Body>

Shows the valid msg as I want it, but when I do:

msg['S:Body'] it returns nothing.

Any suggestions would help.

anthares
  • 11,070
  • 4
  • 41
  • 61
Ryan H
  • 547
  • 1
  • 6
  • 18

1 Answers1

0

msg.S::Body is what you want. Make sure you define the S namespace before you use it.

Eli Grey
  • 35,104
  • 14
  • 75
  • 93