Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
254 views

How to combine large XML files using MSXML SAX in Delphi

What is the best way to do a simple combine of massive XML documents in Delphi with MSXML without using DOM? Should I use the COM components SAXReader and XMLWriter and are there any good examples? ...
4
votes
3answers
650 views

What became of MSXML 4.0?

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

successor of msxsl.exe?

We intend to migrate our framework from msxml4 to msxml6. We where using msxsl.exe as yet. It seems to support only MSXML versions up to 4.0, as command line msxsl.exe -u version 6.0 tells me. Is ...
3
votes
4answers
1k views

Error C2011: 'MSXML2::IXMLDOMImplementation' : 'struct' type redefinition

I am changing my C++ project, which was earlier in VC6 and now being migrated to VS 2008, to use MSXML 6 instead of the earlier MSXML 3. When the code was in VC6 we were using MSXML3 by importing it ...
2
votes
2answers
269 views

How to create a TXML Document using MSXML 6.0 in Delphi 7?

MSXML 6.0 didn't exist when Delphi 7 was released. Is it possible to configure Delphi's TXML Document to use MSXML 6.0 instead of the older versions?
2
votes
3answers
234 views

Xpath expression to retrieve oldest/earliest node

I have an XML snippet, so: <STATES> <STATE> <NAME>Alabama</NAME> <ABBREVIATION>AL</ABBREVIATION> <CAPITAL>Montgomery</CAPITAL> ...
2
votes
2answers
203 views

Is there a way to control which tags get collapsed during serialization with MSXML6?

I create a MSXML6 DOM document and during serialization I want to control how empty elements are serialized: <tag></tag> <tag/> This answer describes a solution for C#, but I'm ...
1
vote
0answers
22 views

Load() method of Msxml2.DOMDocument sometimes take around 3 seconds to execute

we have asp classic page that read from xml file, somtimes Load() method takes around three seconds and sometimes less than one second, the xml files size is 7k. I think this is symptoms of memory ...
1
vote
0answers
37 views

Delphi 2007 IXMLHTTPRequest Time out issue

I'm using Delphi 2007 and have imported MSXML6_TLB. I'm using IXMLHTTPRequest object to send request to server. Example: XMLHttp := CoXMLHTTP60.Create; try XMLHttp.open('POST', URL, False, ...
1
vote
1answer
55 views

Why did MSFT remove XML digital signature support in MSXML6.0?

MSXML5 is the only version of MSXML that supports XML digital signatures. Does anyone have any background why this was dropped, and what replaces it? Is this a good substitute?
1
vote
1answer
154 views

Execute function from start on error/timeout through Vb Script in classic asp

I have the following method in my create.asp page: Public Function read(url) Set xmlHttp = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0") Set xml = Server.CreateObject("Microsoft.XMLDOM") ...
1
vote
1answer
472 views

Problem with COM and MSXML (64-bit only)

We are porting a huge application from 32-bit to 64-bit. This application has a few external libraries which we either disabled or used their 64-bit versions. We are also accessing a database via our ...
1
vote
1answer
592 views

MSXML: Reference to undeclared namespace prefix: '%s'

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

How do I resolve xsl:include directives in c++ (can't use .NET framework)

I need to load an xslt from a database and hold it in memory so that it can be included by another xslt. I know you can do this using the .NET framework and the xmlPreLoadedResolver class, but ...
1
vote
1answer
509 views

“A call to an OS function failed” when loading Windows-1252 XML file

Edit: The error was indeed in the handling; parseError also fails ans reveals the real error; see follow-up question for that error. Old question: Somehow, sometimes the code below generates an ...
1
vote
2answers
170 views

Tranforming XSLT text element with “one space character” yields empty content

I've got this incoming XML I'm transforming (with XSLT in ASP using msxsm6): <Cell> <Data xmlns="http://www.w3.org/TR/REC-html40"> <Font>Text1</Font> ...
1
vote
1answer
659 views

MSXML: How do ask an IXMLDOMNode what version MSXML it comes from?

How can i ask what version of MSXML an IXMLDOMDocument2 is? Given an IXMLDOMDocument2 i need to create another document of the same version. If you give an IXMLDOMDocument from different versions of ...
0
votes
2answers
93 views

How do I read CRLF delimited lines from MSXML.ResponseText in VBA/Excel

Most of the examples I see with MSXML have to to with Javascript or JQuery, but I'm writing an Excel 2010 macro that doesn't use either. My goal is to download a file (as shown below), and parse a ...
0
votes
0answers
38 views

MSXML6 deadlock on Windows7 64bits

I have a C# WCF service which is loading a native component. Interaction with native code are done via P/Invoke. LoadLibrary occurs on the main thread when the host is created. In that native ...
0
votes
1answer
52 views

Remove XML declaration using msxml6/IXMLDOMDocument2

I want to remove XML declaration only from an XML using C++/COM- <?xml version="1.0" encoding="UTF-8" ?> using the IXMLDOMDocument2 interface of msxml6 How can I achieve this ?
0
votes
1answer
243 views

Add namespaces in IXMLDOMDocument root element using C++

I know there is an example in stackoverflow using JS, but I need to accomplish this using C++ and by a strange reason I am not able to add the namespace to the root element using put_nodeValue() if ...
0
votes
1answer
218 views

MSXML 6, User/PW Auth, ResolveExternals

If one must load and parse an XML resource from a user/PW-protected URL you cannot just use an MSXML DOM.Load() as far as I can tell. There is no place to specify the credentials. Yet if you use ...
0
votes
0answers
158 views

Cannot open include file msxml6.h - error, VS2005 c++

I have a fatal error in my c++ VS2005v application. cannot open include file msxml6.h. no such file or directory. I'm working on server 2008 with VS2005, before I had VS2008 and VS2010 and I've ...
0
votes
1answer
101 views

How to upgrade an MSXML Document from version 1 to verison 6?

My application uses MSXML version 1 (MSXML.DOMDocument) to store user documents in XML format. I want to upgrade to MSXML6 (Msxml2.DOMDocument.6.0). The problem is that old documents are not always ...
0
votes
1answer
1k views

MSXML6: error loading valid Windows-1252 document “System error: -2146697210”

Somehow, sometimes the code below generates an error when loading valid Windows-1252 XML. It fails on Windows XP Professional x86 SP3 using MSXML6. It succeeds on Windows 7 Ultimate x64 SP1 using ...
0
votes
1answer
306 views

Upgrading to MsXml6.dll

I had a problem in upgrading the Microsoft XML core for my application from msxml3.dll to msxml6.dll. I chnaged the vcproj, and the header file of mine to point to the msxml6 header and library file. ...
0
votes
2answers
232 views

How to read the attribute and element value

I have the following XML: <?xml version="1.0" encoding="utf-8" ?> <lastconnectedServers> <Server ip="172.24.18.240" domain="MyDomain"> <SharedFolder name="MyShared" ...
0
votes
1answer
153 views

Query Regarding the method call for the interface ISAXContentHandler of msxml6.DLL

I have knowledge on C++ and C#, but COM is an Alien to me. I have a VC++ COM DLL in which all the methods of the interface ISAXContentHandler (of msxml6.DLL) like startElement(), ...
0
votes
1answer
970 views

XML Schema: Incorrect definition for the root element in schema

There is a schema with the following boring root element: <?xml version="1.0" encoding="utf-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> The schema is valid as far as ...