msxml

What became of MSXML 4.0?

不想你离开。 提交于 2019-12-22 05:07:25
问题 i have a dependancy on MSXML 4.0. Microsoft has a page that gives the CLSID and ProgIDs of various MSXML 4.0 objects: Symbolic Name: CLSID_DOMDocument40 GUID: {88d969c0-f192-11d4-a65f-0040963251e5} ProgID: Msxml2.DOMDocument.4.0 Symbolic Name: CLSID_XMLSchemaCache40 GUID: {88d969c2-f192-11d4-a65f-0040963251e5} ProgID: Msxml2.XMLSchemaCache.4.0 But none of the ProgID s or the CLSID s are registered on my Vista machine, or on colleague's XP machine. Was MSXML 4.0 only shipped with some version

unknown Method in xPath run by VBScript

无人久伴 提交于 2019-12-21 20:19:11
问题 the error message is msxml3.dll: Unknown method. /Record/CelloXml/Integration/Case/ServiceEvent[-->last()<--]/Service/Comment My code looks like this and the error is on the case NEW Case OLD works fine with [0] in there 'On Error Resume Next Public Function GetParameterXml() GetParameterXml = _ "<Parameters>" &_ "<Parameter Value='Age' Code='A' Description='Age' Type='Combo' Tooltip='Would you like the newest or oldest Reason?'>" &_ " <Options>" &_ " <Option Code='O' Description='Oldest'

Reference to undeclared namespace prefix when parsing MSXML

我是研究僧i 提交于 2019-12-20 10:29:51
问题 How do I solve the Reference to undeclared namespace prefix: '%s' problem with Microsoft's msxml implementation? I'm using an XML feed from a government web-site that contains values i need to parse. The xml contains namespaces: <?xml version="1.0" encoding="ISO-8859-1"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:cb="http://www.cbwiki.net/wiki/index.php/Specification_1.1" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms=

Loading XML file from httprequest output

瘦欲@ 提交于 2019-12-20 07:27:56
问题 I am trying to analyse the output of httprequest which is formatted as XML. I use MSXML2.DOMDocument to load the response as XML but I receive this error: The system cannot find the path specified. this is the output of httprequest when I receive it as ResponseText : <?xml version="1.0" encoding="utf-8"?> <resultObj> <result>False</result> <invoiceNumber>1</invoiceNumber> <referenceNumber>21669145</referenceNumber> <transactionDate>2016/05/18 20:10:07</transactionDate> </resultObj> and this

XmlHttp Post in Excel VBA not updating website form

时光怂恿深爱的人放手 提交于 2019-12-19 04:05:11
问题 I routinely have to search the state of NV for unclaimed property and put the results in an Excel spreadsheet. I am trying to automate the process but I'm limited to using Excel 2010 and VBA. Below is the URL to the site I'm trying to submit a form using xmlhttp. URL: https://nevadatreasurer.gov/UPSearch/ I created a class to automate submitting forms on other websites but no matter what I enter in the postdata the form is never submitted. Below is my submission, and method to submit the form

Concatenating xml files

安稳与你 提交于 2019-12-19 03:37:35
问题 I have several xml files, the names of which are stored in another xml file. I want to use xsl to produce a summary of the combination of the xml files. I remember there was a way to do this with the msxml extensions (I'm using msxml). I know I can get the content of each file using select="document(filename)" but I'm not sure how to combine all these documents into one. 21-Oct-08 I should have mentioned that I want to do further processing on the combined xml, so it is not sufficient to just

Concatenating xml files

依然范特西╮ 提交于 2019-12-19 03:37:04
问题 I have several xml files, the names of which are stored in another xml file. I want to use xsl to produce a summary of the combination of the xml files. I remember there was a way to do this with the msxml extensions (I'm using msxml). I know I can get the content of each file using select="document(filename)" but I'm not sure how to combine all these documents into one. 21-Oct-08 I should have mentioned that I want to do further processing on the combined xml, so it is not sufficient to just

MSXML from C++ - pretty print / indent newly created documents

谁说胖子不能爱 提交于 2019-12-18 13:27:19
问题 I'm writing out XML files using the MSXML parser, with a wrapper I downloaded from here: http://www.codeproject.com/KB/XML/JW_CXml.aspx. Works great except that when I create a new document from code (so not load from file and modify), the result is all in one big line. I'd like elements to be indented nicely so that I can read it easily in a text editor. Googling shows many people with the same question - asked around 2001 or so. Replies usually say 'apply an XSL transformation' or 'add your

build node-set variable from result tree fragment using <xsl:choose>

試著忘記壹切 提交于 2019-12-18 09:31:34
问题 Is it possible to create a node-set variable from an rtf using xsl:choose (for use in MSXML engine)? I have the following construct: <xsl:choose> <xsl:when test="function-available('msxsl:node-set')"> <xsl:variable name="colorList" select="msxsl:node-set($std:colorList)"/> <xsl:for-each select="$colorList/color"> tr.testid<xsl:value-of select="@testid"/> { color:<xsl:value-of select="."/>; } </xsl:for-each> </xsl:when> <xsl:otherwise> <xsl:variable name="colorList" select="$std:colorList"/>

MSXML2.ServerXMLHTTP.4.0 Source?

*爱你&永不变心* 提交于 2019-12-18 05:04:33
问题 Where does the object "MSXML2.ServerXMLHTTP.4.0" come from? Which install package? I'm attempting to do the following: Set oXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP.4.0") This attempt fails on my development machine (no object is returned) but it is successful on my colleague's development machine. Obviously, he has something installed that I don't or vice versa but where does this object, dll, etc come from? What would I need to install to get this call to work? For the record, changing