> Xerces has a method to enable/disable the loading of an external DTD
>
> /** Set the 'Loading External DTD' flag
> *
> * This method allows users to enable or disable the loading of
> external DTD.
> * When set to false, the parser will ignore any external DTD
> completely
> * if the validationScheme is set to Val_Never.
> *
> * The parser's default state is: true.
> *
> * This flag is ignored if the validationScheme is set to
> Val_Always or Val_Auto.
> *
> * @param newState The value specifying whether external DTD
> should
> * be loaded or not.
> *
> * @see #getLoadExternalDTD
> * @see #setValidationScheme
> */
> void setLoadExternalDTD(const bool newState);
>
> But, I can't seem to locate the actual method to load an external DTD.
>
>
> De Wayne Dantzler
>