I'm trying to get results from SO api in a WP7 app. I was able to get it working in a console app when I used the following code

static void webClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            Console.Clear();
            DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(RootObject));
            var stream = new MemoryStream(Encoding.Default.GetBytes(e.Result));
            var gzstream = new GZipInputStream(stream);

            RootObject qs = ser.ReadObject(gzstream) as RootObject;

            foreach (Question q in qs.questions)
            {
                Console.WriteLine(q.title);
            }

        }

the important part was Encoding.Default. If I chose anything else it would come back with Error GZIP header, first magic byte doesn't match' or something similar.

WP7 doesnt have default, it only has Unicode and UTF8 which neither of them work.

Ideas?

link|improve this question

feedback

2 Answers

Don't use WebClient.DownloadString, use DownloadData. This way you'll receive the GZip-encoded bytes (which can't really be converted to string), and you can pass it directly to the GZupInputStream.

link|improve this answer
because in WP7 Webclient doesn't have DownloadData, only DownloadString – DustinDavis May 17 '11 at 20:24
Oops, you're right. You can use WebClient.OpenReadAsync for that. It's available on WP7. – carlosfigueira May 17 '11 at 20:44
Thanks i'll have to give that a try next time. For now I was able to get @Titan2782 suggestion to work. – DustinDavis May 18 '11 at 15:04
feedback
up vote 1 down vote accepted

use WebRequest.BeginGetResponse instead. This way you can get the bytes as @carlosfigueria suggested but since webclient only has getstring this is a work around.

link|improve this answer
that did it. Thanks. – DustinDavis May 17 '11 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.