ExamView started to offer the option to export to XML with version 3.5. In version 3.6 a DOCTYPE code was included in the exported XML. In version 4.0 the DOCTYPE code was removed. So XML created in versions 3.5 or 4.0 should import directly into the CPS software with no added steps needed. If you open the XML created in version 3.6 in notepad and edit the beginning lines of the XML code, you can then import it into the CPS software.
Original XML from version 3.6:
CODE | <?xml version='1.0' encoding='utf-8' standalone='no'?> <!DOCTYPE ExamView PUBLIC '-//FSCreations//DTD ExamView Test//EN' 'http://www.ExamView.com/dtd/ver3_6/evtest.dtd'> <ExamView type='test' platform='Windows' app-version='3.63'> <header> <title>Test</title> <version>A</version> </header> <font-table> |
Edited XML from version 3.6:
CODE | <?xml version='1.0' encoding='utf-8' standalone='yes?> <ExamView type='test' platform='Windows' app-version='3.63'> <header> <title>Test</title> <version>A</version> </header> <font-table> |
Changing the standalone to yes and deleting the <DOCTYPE> line should allow you to import version 3.6 XML into CPS. |