vote up 3 vote down star
2

I have an XSD file that is encoded in UTF-8, and any text editor I run it through doesn't show any character at the beginning of the file, but when I pull it up in Visual Studio's debugger, I clearly see an empty box in front of the file.

Box in file

I also get the error:

Data at the root level is invalid. Line 1, position 1.

alt text

Anyone know what this is?

Update: Edited post to qualify type of file. It's an XSD file created by Microsoft's XSD creator.

flag

Is there a way for Visual Studio to find this out? Or am I just stuck using the solution I tried? – George Stocker Dec 10 '08 at 2:27
Down voted after all this time? – George Stocker Jan 21 '09 at 3:49
1  
Downvoted again? Long tail? – George Stocker Jan 24 '09 at 0:55

3 Answers

vote up 10 vote down check

It turns out, the answer is that what I'm seeing is a Byte Order Mark, which is a character that tells whatever is loading the document what it is encoded in. In my case, it's encoded in utf-8, so the corresponding BOM was EF BB BF, as shown below. To remove it, I opened it up in Notepad++ and clicked on "Encode in UTF-8 without BOM", as shown below:

Saving in NotePad++.

To actually see the BOM, I had to open it up in TextPad in Binary mode:, and conducted a Google search for "EF BB BF".

binary mode

It took me about 8 hours to find out this was what was causing it, so I thought I'd share this with everyone.

link|flag
Yea, I've stubbed my toe on that one too. The XML parser we're using (in Java) doesn't like the UTF-8 BOM that windows editors like to produce. I wrapped InputStream to detect it and throw it away before passing the bytes on to the parser. – bendin Nov 14 '08 at 21:31
I hope that no poor soul has to spend any more time on this problem than I had to. It's ridiculous that at this day and age, Visual Studio doesn't say, "Gee, that looks like a BOM, maybe I'd better warn the programmer." – George Stocker Nov 14 '08 at 21:35
I cannot reproduce this either with VS2008 or VS2005. Which version of VS is causing the problem? Could you provide a small xml file with which you have this problem? I can save it in UTF-8 with a BOM myself. – Dimitre Novatchev Nov 16 '08 at 3:02
I should qualify this statement, it was an XSD File created by Microsoft's XSD Schema creator from an XML file. That's what caused it. – George Stocker Nov 16 '08 at 3:16
javac pukes on this too, BTW. At least in J2SE 1.5 – Adam Jaskiewicz Apr 21 at 20:38
vote up 1 vote down

here's how you do it with vim:

# vim file.xml
:set nobomb
:wq
link|flag
vote up 0 vote down

Thanks, this was really helpful. I was doing some work with nusoap and PHP SOAP clients and I couldn't get the simplest SOAP call to work. Using the nusoap client's getError() function I saw this:

XML error parsing SOAP payload on line 1: Mismatched tag

I realised that my PHP server page had [invisible] BOM characters and these were being returned at the start of the SOAP response. Using your Notepad++ tip I was able to remove the BOM characters, refresh the file on the server and both SOAP clients started working as expected.

link|flag

Your Answer

Get an OpenID
or

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