1

I want to display a whole SOAP message using XSL. I know that message is in var://context/INPUT variable and to display a whole message I use serialization <dp:serialize select="dp:variable('var://context/INPUT')"/> (dp is for IBM DataPower variables).

But this way, if message contains characters like ćčš or љњшђж they are displayed like #1084;&#1080 and so on. disable-output-escaping = "yes" doesn't work with serialization.

Any ideas how to resolve this problem?

Isaac G Sivaa
  • 1,289
  • 4
  • 15
  • 32

1 Answers1

0

As long as the message is XML you can't really do anything about it as DataPower will escape those characters, else risking "destroying" the message if there is a character code conversion. You would have to convert the message into a binaryNode to get round that issue I am afraid.

Anders
  • 3,198
  • 1
  • 20
  • 43