Skip to Content
0
Former Member
Jun 18, 2012 at 07:52 AM

Receive 'ä' character in SOAP XML

56 Views

I encountered an issue while receiving characters such as 'ä' via SOAP XML. An application is sending the following data:

<field>ä</field>

In PI (7.3), this is received using the SOAP adapter and translated into:

<field>&#xC3;&#xA4;</field>

which corresponds to:

<field>ä</field>

And that's cleary wrong. According to the XML specifications, sending over the character 'ä' is correct. How can I prevent PI from interpreting this character wrong?