#include <DOMEntityResolver.hpp>
Public Member Functions | |
Functions introduced in DOM Level 2 | |
virtual DOMInputSource * | resolveEntity (const XMLCh *const publicId, const XMLCh *const systemId, const XMLCh *const baseURI)=0 |
Allow the application to resolve external entities. |
Applications needing to implement customized handling for external entities must implement this interface and register their implementation by setting the entityResolver attribute of the DOMBuilder.
The DOMBuilder will then allow the application to intercept any external entities (including the external DTD subset and external parameter entities) before including them.
Many DOM applications will not need to implement this interface, but it will be especially useful for applications that build XML documents from databases or other specialized input sources, or for applications that use URNs.
xercesc::DOMEntityResolver::DOMEntityResolver | ( | ) | [inline, protected] |
virtual xercesc::DOMEntityResolver::~DOMEntityResolver | ( | ) | [inline, virtual] |
Destructor.
xercesc::DOMEntityResolver::DOMEntityResolver | ( | ) | [inline, protected] |
virtual xercesc::DOMEntityResolver::~DOMEntityResolver | ( | ) | [inline, virtual] |
Destructor.
virtual DOMInputSource* xercesc::DOMEntityResolver::resolveEntity | ( | const XMLCh *const | publicId, | |
const XMLCh *const | systemId, | |||
const XMLCh *const | baseURI | |||
) | [pure virtual] |
Allow the application to resolve external entities.
The DOMBuilder will call this method before opening any external entity except the top-level document entity (including the external DTD subset, external entities referenced within the DTD, and external entities referenced within the document element): the application may request that the DOMBuilder resolve the entity itself, that it use an alternative URI, or that it use an entirely different input source.
Application writers can use this method to redirect external system identifiers to secure and/or local URIs, to look up public identifiers in a catalogue, or to read an entity from a database or other input source (including, for example, a dialog box).
If the system identifier is a URL, the DOMBuilder parser must resolve it fully before reporting it to the application.
The returned DOMInputSource is owned by the DOMBuilder which is responsible to clean up the memory.
"Experimental - subject to change"
publicId | The public identifier of the external entity being referenced, or null if none was supplied. | |
systemId | The system identifier of the external entity being referenced. | |
baseURI | The absolute base URI of the resource being parsed, or null if there is no base URI. |
null
to request that the parser open a regular URI connection to the system identifier. The returned DOMInputSource is owned by the DOMBuilder which is responsible to clean up the memory.