I have a xml file that I cannot verify against it's xsd schema with v1.2.0.2 of xmlcopyeditor. The validation fails with the error "Unexpected validation error".
The interesting this is that validation works v1.1.0.6, so using the previous version as a reference, I hacked around on the wrapxerces.cpp file until the validation passed. It turns out that the following line was the culprit.
I'm trying to avoid sending over the xml+xsd because I would have to get permission to release the files from someone, but I can I probably do that if there's no other way to track it down.
Thanks,
Chip
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a xml file that I cannot verify against it's xsd schema with v1.2.0.2 of xmlcopyeditor. The validation fails with the error "Unexpected validation error".
The interesting this is that validation works v1.1.0.6, so using the previous version as a reference, I hacked around on the wrapxerces.cpp file until the validation passed. It turns out that the following line was the culprit.
parser->setEntityResolver ( &handler ); //v1.1.0.6
//parser->setEntityResolver ( catalogResolver ); //v.1.2.0.2
Do you have any idea what might be the problem?
I'm trying to avoid sending over the xml+xsd because I would have to get permission to release the files from someone, but I can I probably do that if there's no other way to track it down.
Thanks,
Chip