Questions tagged [msxml6]

MSXML is a set of services that allow applications written in JScript, VBScript, and Microsoft development tools to build Windows-native XML-based applications. MSXML6 is the latest MSXML product from Microsoft.

Microsoft XML Core Services (MSXML) is a set of services that allow applications written in JScript, VBScript, and Microsoft development tools to build Windows-native XML-based applications. It supports XML 1.0, DOM, SAX, an XSLT 1.0 processor, XML schema support including XSD and XDR, as well as other XML-related technologies.

131 questions
0
votes
1 answer

MSXML and cannonical XML

Is there a good way to canonicalize XML with MSXML6? I have an XML document that I load into a IXMLDOMDocument object. I need to perform an operation like singing or hashing on the document. I would like to put it into XML canonical form a la…
sam msft
  • 537
  • 6
  • 17
0
votes
0 answers

XSL Transformation in C++ catch message with terminate flag

I've made a project basing on this document to retrieve information from XML file basing on XSL file. I am trying to throw an error in XSL file: PIN length in input…
Marek
  • 1,189
  • 3
  • 13
  • 33
0
votes
0 answers

How to set IXMLHTTPRequest.Timeout in C++ MSXML 6.0?

I don't see timeout property at https://msdn.microsoft.com/en-us/library/ms760305(v=vs.85).aspx This causes send method to hang sometimes (timeout seems to be infinite).
Alex
  • 2,469
  • 3
  • 28
  • 61
0
votes
1 answer

Parsing Fidelity Stock Quote page

I have been able to obtain stock and index data from Fidelity by setting up a connection to the relevant Fidelity page; writing the results to a worksheet; and then finding the results I want on that sheet. I am now trying to simplify and avoid…
Ron Rosenfeld
  • 53,870
  • 7
  • 28
  • 60
0
votes
0 answers

VS2015:“DOMDocument60”: is not a member of 'MSXML2'

Environment: IDE --> VS2015 Operating System --> WinServer 2012 I use MSXML to build my programme. The project works well on windows7. When I builded it on winServer 2012. It got the compling error: “DOMDocument60”: is not a member of…
JinM
  • 61
  • 7
0
votes
1 answer

Visual Studio 10: Saxxmlreader undeclared on my Windows 10

I have recently switched my PC from Windows 7 to Windows 10. On Windows 7, no problem, my solution is built corectly. But on my Windows 10, with the same solution I have error "SAXXMLReader undeclared". I don't remember have installed anything…
cyanat
  • 77
  • 7
0
votes
0 answers

how to set up msxml language?

I installed english windows server 2008 r2. MSXml 6.0 was installed as part of os. When i check some xml documents, i see english error messages. For example: E­l­e­m­e­nt 'Ра­зде­л1Ра­сче­тПо­На­чи­сле­нны­мУ­пла­че­нны­м2014' is u­n­e­x­p­e­c­t­ed…
0
votes
1 answer

What is difference between getElementsByTagName() with tagName and with .//tagName?

What is difference between getElementsByTagName() with tagName and with .//tagName ? When we pass tagname in the getElementsByTagName(), in that what is the meaning when we add ".//" ? What is the difference between…
Veeru
  • 19
  • 4
0
votes
0 answers

How do I parse xml for multiple specific nodes

how to retrieve/parse 2 or more only some specific node of xml using c++. void queryNodes() { HRESULT hr = S_OK; IXMLDOMDocument *pXMLDom = NULL; IXMLDOMNodeList *pNodes = NULL; IXMLDOMNode *pNode = NULL; IXMLDOMNode…
lotus
  • 1
  • 1
0
votes
0 answers

Reading int and double numbers from xml file using MSXML in c++

I have a simple xml file which I need to read in c++. I am working on Windows so I choose MSXML. And it wouldn't be a problem if not for the way of how data is saved in the xml file. I cannot modify files as I have a lot of them + I can get a lot…
0
votes
1 answer

WiX msxml 6 prerequisite

I am creating a WiX installer for our software which requires msxml 6. If I understand correctly msxml 6 is shipped with Windows starting from XP SP3 but since our software supports all versions of XP I guess there is a risk that the customer won't…
dbostream
  • 781
  • 2
  • 11
  • 27
0
votes
1 answer

Some files have 'XMLNS' listed, others just 'XSI'. How do I set an alias for the xpath query that will work with either?

Some files I need to process have this (called the "haves"): Other files in the same group have this (called the…
user3696061
  • 135
  • 1
  • 9
0
votes
0 answers

why a classic asp + vb6 component application using MSXML6.0 is slower on W2K8 server compare to W2K3 server?

Recently we moved classic asp application+ vb6 com components from W2K3 server to W2K8 server. The only change made in the vb6 component is upgrade from MSXML 2.0 to MSXML 6.0. These vb6 components are compiled into dlls and registered as COM…
user1427816
  • 43
  • 1
  • 5
0
votes
1 answer

XSLT 1.0 compile error with named template

I am trying to handle a space issue with the Phone number and faxNumber elements in my XML. The elements are: 0870 6071352 01722 422301 but they can also be: 0870 6071352 so I need to…
Our Man in Bananas
  • 5,809
  • 21
  • 91
  • 148
0
votes
1 answer

How do I send XML from one ASP.NET page to another?

I've spent all day struggling with ASP.NET. I've made an .aspx page that sends XML to other .aspx page that reads the previous XML and sends a response to the first page. The first page appears to work, but the second fails. I suspect it's something…
Bull
  • 748
  • 1
  • 11
  • 24
1 2 3
8
9