Re: Using fgXercesSchemaExternalSchemaLocation to set a schema path.

2005-04-06 Thread Steve Harrington
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

Re: Using fgXercesSchemaExternalSchemaLocation to set a schema path.

2005-02-14 Thread Michael Fuller
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

Re: Using fgXercesSchemaExternalSchemaLocation to set a schema path.

2005-02-08 Thread Axel WeiÃ
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

Using fgXercesSchemaExternalSchemaLocation to set a schema path.

2005-02-08 Thread Mary_White
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