Questions tagged [msxml4]
24 questions
4
votes
2 answers
XSLT/XPath : No upper-case function in MSXML 4.0?
I try to use upper-case() in an XPATH, my parser is MSXML 4.0, and I get :
upper-case is not a valid XSLT or XPath function.
Is it really not implemented ?

glmxndr
- 45,516
- 29
- 93
- 118
3
votes
1 answer
XSLT nested sort / for-each
I am trying to figure out the best way to perform a nested for-each & sort. For example my XSLT below performs the following:
Selects a node set.
Sorts by Date attribute.
Performs position() to pull 4 nodes.
Now, the next part is what I am…

seanrco
- 935
- 5
- 16
- 32
3
votes
3 answers
Can I rely on MSXML4 being present?
We test the setup of our software on "clean install" images of windows XP, Vista and windows 7 before release.
Some old code in the software still relies on MSXML4. Until now, I had assumed that it is not necessary to install MSXML4 because…

Wim Coenen
- 66,094
- 13
- 157
- 251
2
votes
1 answer
How does Delphi's TXMLDocument decide which MS XML version (3.0, 6.0 or even 4.0) to use?
I have a program written in Delphi 6 that uses TXMLDocument, and during runtime it uses the MS XML 3.0 parser. But this program reports a The specified module could not be found error on one computer, and Process Monitor reports that the program is…

TomR
- 2,696
- 6
- 34
- 87
2
votes
0 answers
Unable to register the DLL/OCX: RegSvr32 failed with exit code 0x5
I want to install the latest TeXnicCenter on Windows 7 Professional (64-Bit). But everytime I run the installer with admin rights I get the message:
"C:\Windows\system32\msxml4.dll
Unable to register the DLL/OCX: RegSvr32 failed with exit code 0x5.…

Benny Code
- 51,456
- 28
- 233
- 198
2
votes
0 answers
Replacing references of MSXML4 with MSXML6. Is namespace MSXML2?
Getting some odd build behavior as I remove all references to MSXML4 in my project, and replace them with MSXML6.
When I install MSXML using NuGet, or if I add it manually by referencing the dll in SysWow64, the reference immediately builds down to…

Switch386
- 454
- 6
- 19
2
votes
3 answers
Need help stopping MSXML from adding namespaces
I am using MSXML 4 to generate the following xml string:
…

TERACytE
- 7,553
- 13
- 75
- 111
2
votes
2 answers
MSXML4 versus MSXML6 XSLT Parsing Namespace Error
I saw a lot of posts online about MSXML4 to 6 or XSLT 1.0 versus 2.0 etc. But they could not answer my question.
I have a XSLT transformation code that works with MSXML4 APIs (XSLTransform and FreeThreadedDomDocument) on IE7 via Javascript.
Same…

WPF-it
- 19,625
- 8
- 55
- 71
2
votes
1 answer
Best way to remove XML declaration from BSTR
I'm wondering if someone can help me trying to remove the XML declaration from a string containing an XML doc. Any help would be appreciated. We're using MSXML 4.0, but I was having difficulties using that and ended up just doing a substring. I'm…

binarymelon
- 904
- 2
- 12
- 26
1
vote
1 answer
MSXML4 IXMLDOMNode.nodeTypedValue throwing Type mismatch exception on one machine
I have a VB6 program that is failing on a particular machine.
The nature of the problem is code like this:
'this next line throws Type mismatch exception
If…

Stringfellow
- 43
- 1
- 8
1
vote
3 answers
SBL-ODU-01007 The HTTP request did not contain a valid SOAPAction header
I am hoping someone can help get me in the right direction...
I am using Powerbuilder 12 Classic and trying to consume a Oracle CRM OnDemand web service.
Using Msxml2.XMLHTTP.4.0 commands, I have been able to connect using https and retrieve the…

Carol
- 11
- 3
1
vote
0 answers
need to get the child nodes in same order
I have an xml file as below:
some
abc
2005
30.00

coder
- 109
- 5
1
vote
1 answer
gtest output not appearing in visual studio output window after including msxml4
I have gtest all setup and running fine with Visual Studio 8.
I've included msxml 4.0 in my build and now the test output won't show up in the visual studio output window.
The application will run if launched from the command line and return…

cbrulak
- 15,436
- 20
- 61
- 101
1
vote
1 answer
MSXML4.0 on Windows Server 2008r2 - Cannot create object MSXML2.ServerXMLHTTP.4.0
We have a large codebase (primarily vbscript) that I am migrating from a Windows 2000 (32 bit) server to Windows 2008 R2 (64 bit). A good portion of this code relies on the MSXML 4.0 parser and unfortunately, we do not have the option of using…

pimanac
- 11
- 1
- 2
1
vote
1 answer
How do I append elements with duplicate names using MSXML & C++?
I am write some code to update a XML DOM using MSXML4 & C++. I need a method that appends a child element to a parent element. The code I have written below works until the title of the child matches the title of another child under the parent. I…

TERACytE
- 7,553
- 13
- 75
- 111