InterviewSolution
| 1. |
Why Does The Datapower Appliance Convert My Utf-8 Characters To Encoding? |
|
Answer» A back end server or the requesting client might be expecting some special characters such as the British Pound symbol and letters with umlauts, accents, or other special marks; however, these special characters are not preserved when they pass through the DataPower appliance. Take the following steps to resolve the problem:
<xsl:output encoding="UTF-8" version="1.0" method="xml"/>
<a> Optional: If your response still escapes the special characters, clear the stylesheet cache. Clearing the style sheet cache ensures that the DataPower appliance uses the current settings. A back end server or the requesting client might be expecting some special characters such as the British Pound symbol and letters with umlauts, accents, or other special marks; however, these special characters are not preserved when they pass through the DataPower appliance. Take the following steps to resolve the problem: <xsl:output encoding="UTF-8" version="1.0" method="xml"/> <a> Optional: If your response still escapes the special characters, clear the stylesheet cache. Clearing the style sheet cache ensures that the DataPower appliance uses the current settings. |
|