Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i try to generate class from xsd but i got problem with the second line

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:saqcc="urn:saq:cct:cct-3.5.xsd" xmlns:flx="urn:saq:mtl:grey:flux:04489:rep-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:saq:mtl:grey:flux:04489:rep-1.0.xsd"  elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.1">

...

i got this error:

[ERROR] Content is not allowed in prolog. so xjc seem to have problem with schema

this xsd have an import and in this import there is another import... so i don't know when the error will be removed if xjc will be able to manage that...

share|improve this question

2 Answers

When I get this error with any sort of XML document, it's usually because of some (invisible) content before <?xml. More specifically, this is due to the BOM (byte order mark) added by some editor. In my case, it was mostly due to this BOM: 

Check if you have such content in your file. If you do, remove it. XML files don't need a BOM, as they can formally specify the encoding in the prolog like this:

<?xml version="1.0" encoding="utf-8"?>

UPDATE: The prolog MUST be the first part of well-formed XML, as defined by w3c here:

http://www.w3.org/TR/2008/REC-xml-20081126/#sec-well-formed

share|improve this answer
no only invisible char i have it's crlf ( carriage return, linefeed) – redfox26 Jul 22 '11 at 8:23
That's not permitted either. <?xml MUST be the first characters in an XML file, as you can see here: w3.org/TR/2008/REC-xml-20081126/#sec-well-formed – Lukas Eder Jul 22 '11 at 10:11
i have nothing before <?xml crlf it's for every end of line (like any other document...) – redfox26 Jul 22 '11 at 10:44

I had this issue and it turned out the encoding was the issue:

<?xml version="1.0" encoding="utf-8"?>

works but

<?xml version="1.0" encoding="utf-16"?>

doesn't (at least on my Windows7/64 bit OS).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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