I try to read a xml file from web and parse them out using XDocument. It normally works fine but sometime it's give me this error for day: ' ', hexadecimal value 0x1F, is an invalid character. Line 1, position 1

I have tried some solutions from google but it's didn't work for VS 2010 express windows phone 7. There is a solution which replace the 0x1F character to string.empty but my code return a stream which doesn't have replace method.

s = s.Replace(Convert.ToString((byte)0x1F), string.Empty);

Here is my code:

        void webClient_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
    {
        using (var reader = new StreamReader(e.Result))
        {
            int[] counter = { 1 };  
            string s = reader.ReadToEnd();
            Stream str = e.Result;
       //     s = s.Replace(Convert.ToString((byte)0x1F), string.Empty);
    //        byte[] str = Convert.FromBase64String(s);
     //       Stream memStream = new MemoryStream(str);
            str.Position = 0;
            XDocument xdoc = XDocument.Load(str);                

            var data = from query in xdoc.Descendants("user")
                       select new mobion
                       {
                           index = counter[0]++,
                           avlink = (string)query.Element("user_info").Element("avlink"),
                           nickname = (string)query.Element("user_info").Element("nickname"),
                           track = (string)query.Element("track"),
                           artist = (string)query.Element("artist"),
                       };
            listBox.ItemsSource = data;
        }
    }

XML file: http://music.mobion.vn/api/v1/music/userstop?devid=

Thanks you for reading this post!

link|improve this question

1  
Could you please try posting the XML content as well? – Mathias Lykkegaard Lorenzen Jul 18 '11 at 3:19
I have tried this but didn't work, still give that error: s = s.Replace(Convert.ToString((byte)0x1F), string.Empty); Stream str = new MemoryStream(UTF8Encoding.UTF8.GetBytes(s)); – ng_ducnghia Jul 18 '11 at 3:34
here is the xml file I try to read from: music.mobion.vn/api/v1/music/userstop?devid= – ng_ducnghia Jul 19 '11 at 0:52
feedback

4 Answers

up vote 0 down vote accepted

Consider using http://msdn.microsoft.com/en-us/library/7c5fyk1k.aspx if you're decoding content read from the web.

link|improve this answer
feedback

0x1f is a Windows control character. It is not valid XML. Your best bet is to replace it.

Instead of using reader.ReadToEnd() (which by the way - for a large file - can use up a lot of memory.. though you can definitely use it) why not try something like:

string input;
while ((input = sr.ReadLine()) != null)
{
    string = string + input.Replace((char)(0x1F), ' ');
}

you can re-convert into a stream if you'd like, to then use as you please.

byte[] byteArray = Encoding.ASCII.GetBytes( input );
MemoryStream stream = new MemoryStream( byteArray );

Or else you could keep doing readToEnd() and then clean that string of illegal characters, and convert back to a stream.

Here's a good resource for cleaning illegal characters in your xml - chances are, youll have others as well...

https://seattlesoftware.wordpress.com/tag/hexadecimal-value-0x-is-an-invalid-character/

link|improve this answer
feedback

Nobody can answer if you don't show relevant info - I mean the Xml content.

As a general advice I would put a breakpoint after ReadToEnd() call. Now you can do a couple of things:

  • Reveal Xml content to this forum.
  • Test it using VS Xml visualizer.
  • Copy-paste the string into a txt file and investigate it offline.
link|improve this answer
feedback

I'd guess it's probably an encoding issue but without seeing the XML I can't say for sure.

In terms of your plan to simply replace the character but not being able to because you have a streamrather than text, simpley read the stream into a string and then remove the characters you don't want.

link|improve this answer
MY XML file: music.mobion.vn/api/v1/music/userstop?devid= – ng_ducnghia Jul 19 '11 at 0:53
feedback

Your Answer

 
or
required, but never shown

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