The problem of external DTD definition when MSXML is used to process xml documents -- attribute setting (ASP)

Source: Internet
Author: User
Tags xsl xsl file
Xmlfile = "http: // myserver/catalog. xml"
Export file = "catalog. xsl"
'Create related objects
Set destination doc = server. CreateObject ("MSXML2.FreeThreadedDOMDocument ")
Set xmlDoc = server. CreateObject ("MSXML2.DOMDocument ")
'Read the xsl file
Optional Doc. async = False
Export Doc. resolveExternals = True
Using Doc. load server. MapPath (using file)
'Reading xml files
Xmldoc. setProperty "ServerHTTPRequest", true' sets the ServerHTTPRequest attribute to True to load xml documents through http
Xmldoc. async = false' set the async attribute to False to disable asynchronous calls.
Xmldoc. resolveExternals = true' set resolveExternals to True to enable external DTD analysis
Xmldoc. validateOnParse = false' set validateOnParse to False to allow document verification
Xmldoc. load xmlfile' read xml documents
Do While (xmldoc. ReadyState <4) 'check whether the ReadyState status value is 4'. For detailed numerical definitions, see msxml sdk document
Xmldoc. waitForResponse 10 'wait for the document to be fully read using the waitForResponse method. 'If the read is complete, the system suspends the service for 10 milliseconds.
Loop
'Convert xml-> html and output the document
Xmldoc. transformNodeToObject named Doc, Response
'Clear the object
Set xslt = Nothing
Set category doc = Nothing
Set xmldoc = Nothing

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.