Correct me if I'm wrong, but I think the problem is that she needs to use:
virtual void setProperty (const XMLCh *const name, void *value)=0
instead of:
virtual void setFeature (const XMLCh *const name, const bool state)=0
Cheers,
Steve Harrington
National Radio Astronomy Observator
On Tue, Feb 08, 2005 at 12:29:20PM -0500, [EMAIL PROTECTED] wrote:
>
> How can I set my schema path internally in the program to override the
> value in the XML file?
>
This has been discussed in:
http://issues.apache.org/jira/browse/XERCESC-1309
The conclusion (courtesy Alberto) was tha
Am Dienstag, 8. Februar 2005 18:29 schrieb
[EMAIL PROTECTED]:
> // Problem code.
>
> m_pValidator->setFeature(XMLUni::fgXercesSchemaExternalSchemaLocation,
> pszSchemaPath);
>
> // End code
>
> psSchemaDir is a fully qualified schema path. (ie
> z:\schema\schema.xsd)
>
> My goal is to ignore the
Hi,
I am trying to set the feature fgXercesSchemaExternalSchemaLocation
to a schema path
Using Visual C++ and it blows up. I am using
the following code.
// Begin code.
DOMImplementation *pImpl = DOMImplementationRegistry::getDOMImplementation(gLS);
m_pValidator=((DOMImplementationLS*)pImpl)c