I have rather strange problem. I am running the same exactly WPF application on Win7 and XP platform. The application includes wpf listview in which one column presents URL's. The issue arises on XP platform where non-unicode Url's, specifically Chinese or Korean are shown as squares.
While on Win 7 the same data is shown correctly. Need to mention that other non unicode characters like Greek or German are showing correctly on both systems.
Does anybody knows what is going on? Thanks
// Get the stream associated with the response.
Stream receiveStream = response.GetResponseStream ();
// Pipes the stream to a higher level stream reader with the required encoding format.
StreamReader readStream = new StreamReader (receiveStream, Encoding.UTF8);