[Mono-list] Blam Unicode Issue?

Atsushi Eno atsushi at ximian.com
Tue Apr 25 07:48:04 EDT 2006


Hello,

Yousef Raffah wrote:
> On Tue, 2006-04-25 at 15:24 +0900, Atsushi Eno wrote:
>> Hello,
>>
>> To determine if the "Unicode issue" is either in the mono itself or
>> anywhere else, can you please provide the actual RSS that Blam
>> could not retrieve? I cannot connect what happened at your side
>> and why it could be an issue in Unicode processing.
>>
> Sorry, here is the link for one of the feeds:
> http://bandar.raffah.com/wp/?feed=rss2

Thanks - I downloaded the RSS and simply loaded via StreamReader using
UTF8Encoding with "throwOnInvalid" = true,

    public static void Main (string [] args)
    {
        Encoding e = new UTF8Encoding (true, true);
        using (TextReader r = new StreamReader (args [0], e)) {
            string s = r.ReadToEnd ();
        }
    }

but it just worked fine (It also didn't raise an error on .NET).

I still don't understand why the issue at your hand could be related
to Unicode processing (maybe a stacktrace or something could be
persuasive?), but it does not seem to be related. It could happen
that you use old mono and we fixed some bugs after the release of it.

Atsushi Eno



More information about the Mono-list mailing list