Posts by guilherme.cruz • 11 points
1 post
-
0
votes1
answer205
viewsA: WCF Receive Reply in UTF-8
Try it from here: Encoding iso = Encoding.GetEncoding("ISO-8859-1"); Encoding utf8 = Encoding.UTF8; byte[] utfBytes = utf8.GetBytes(Message); byte[] isoBytes = Encoding.Convert(utf8, iso, utfBytes);…