Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
206 views

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 ...
2
votes
1answer
469 views

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 ...
2
votes
3answers
2k views

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 ?
1
vote
1answer
116 views

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 ...
1
vote
2answers
277 views

Need help stopping MSXML from adding namespaces

I am using MSXML 4 to generate the following xml string: <?xml version="1.0"> <Parent_Element xmlns="http://1"> <Child_One> <Child_Two xmlns="http://2"> ...
1
vote
1answer
236 views

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 ...
1
vote
1answer
160 views

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 ...
0
votes
0answers
681 views

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 ...
0
votes
1answer
80 views

MSXML4 and setting the encoding string

I using MSXML4 to generate a XML. I'm trying to set the encoding value to UTF-8. Here is my code: const _bstr_t k_XML_Tag_Name ("xml"); const _bstr_t k_Processing_Tag_Name ("version=\"1.0\" ...
0
votes
2answers
101 views

problem parsing a xml file with MSXML4 in C++

Here is my parsing code: MSXML2::IXMLDOMNodePtr pNode = m_pXmlDoc->selectSingleNode(kNameOfChild.c_str()); MSXML2::IXMLDOMNodeListPtr pIDOMNodeList = NULL; MSXML2::IXMLDOMNodePtr pIDOMNode = ...