Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: "DTD is prohibited" when trying to add XMLSchema.xsd (schema for schemas) to schema cache in MSXML6.

From: Martin Honnen <mahotrash@-----.-->
To: NULL
Date: 7/12/2008 2:56:00 PM

Gerben Abbink wrote:
> Hi,
> 
> According to Microsoft 
> (http://msdn.microsoft.com/en-us/library/ms764692(VS.85).aspx) it should be 
> possible to add the schema for schemas to the schema cache. However, when i 
> try to do this, i get an error "DTD is prohibited".
> 
> This is what i do (in Delphi):
> 
> var
>   XMLDOMSchemaCache: IXMLDOMSchemaCollection2;
> begin
>   XMLDOMSchemaCache := CoXMLSchemaCache60.Create();
>   XMLDOMSchemaCache.add('http://www.w3.org/2001/XMLSchema', 
> 'http://www.w3.org/2001/XMLSchema.xsd');
> 
> Calling add() raises an EOleException with error message "DTD is 
> prohibited". But IXMLDOMSchemaCollection2 has no properties so i can allow 
> DTDs. How can i solve this?

It should be possible to add a DOM document with the schema, where you 
set the property ProhibitDTD
http://msdn.microsoft.com/en-us/library/ms762632(VS.85).aspx
first before you load the schema.
So pseudo code would be
   var schemaDoc = new ActiveXObject('Msxml2.DOMDocument.6.0');
   schemaDoc.async = false;
   schemaDoc.resolveExternals = true;
   schemaDoc.validateOnParse = false;
   schemaDoc.setProperty("ProhibitDTD", false);
   schemaDoc.load('http://www.w3.org/2001/XMLSchema.xsd');

   schemaCache.add('http://www.w3.org/2001/XMLSchema', schemaDoc);




-- 

	Martin Honnen --- MVP XML
	http://JavaScript.FAQTs.com/


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent