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;и
and so on. disable-output-escaping = "yes"
doesn't work with serialization.
Any ideas how to resolve this problem?