在 Xerces C++ 中验证文档
我想在 Xerces-C++(版本 2.8,在 Linux 下)中加载 XML 文档,并使用文档中未引用的 DTD 架构来验证它。我尝试了以下操作:
XercesDOMParser parser;
parser.loadGrammar("grammar.dtd", Grammar::DTDGrammarType);
parser.setValidationScheme(XercesDOMParser::Val_Always);
parser.parse("xmlfile.xml");
但如果文档无效,它不会指示错误。我缺少什么?
I want to load an XML document in Xerces-C++ (version 2.8, under Linux), and validate it using a DTD schema not referenced from the document. I tried the following:
XercesDOMParser parser;
parser.loadGrammar("grammar.dtd", Grammar::DTDGrammarType);
parser.setValidationScheme(XercesDOMParser::Val_Always);
parser.parse("xmlfile.xml");
But it doesn't indicate an error if the document is not valid. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在调用解析之前,您需要设置错误处理程序如果您想查看任何内容:
其中 Handler 是派生自 ErrorHandler< /a>
You'll need to set an error handler before calling parse if you want to see anything:
where Handler is a class derived from ErrorHandler