xml - No declaration found for element -
i have simple xml , xsd files. using xerces generate .h/cpp files when run application gives error: no declaration found element 'x:books' my xml file is: <?xml version="1.0"?> <x:books xmlns:x="urn:books" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="urn:bookstore books.xsd"> <book id="bk001"> <author>writer</author> <title>the first book</title> <genre>fiction</genre> <price>44.95</price> <pub_date>2000-10-01</pub_date> <review>an amazing story of nothing.</review> </book> <book id="bk002"> <author>poet</author> <title>the poet's first poem</title> <genre>poem</genre> <price>24.95</price> <pub_date>2001-10-01</pub_date> ...