Skip to content
Snippets Groups Projects
Commit ee199f05 authored by Alberto Massari's avatar Alberto Massari
Browse files

DTDs included from XML Schema were not opened using the entity resolver...

DTDs included from XML Schema were not opened using the entity resolver specified by the user (bug# 27008)


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@175855 13f79535-47bb-0310-9956-ffa450edef68
parent 1716fef8
No related branches found
No related tags found
No related merge requests found
......@@ -557,4 +557,13 @@ InputSource* XSDDOMParser::resolveEntity(const XMLCh* const publicId,
return 0;
}
InputSource*
XSDDOMParser::resolveEntity(XMLResourceIdentifier* resourceIdentifier)
{
if (fUserEntityHandler)
return fUserEntityHandler->resolveEntity(resourceIdentifier);
return 0;
}
XERCES_CPP_NAMESPACE_END
......@@ -306,6 +306,8 @@ public :
, const XMLCh* const baseURI = 0
);
virtual InputSource* resolveEntity(XMLResourceIdentifier* resourceIdentifier);
protected :
// -----------------------------------------------------------------------
// Protected Helper methods
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment