msxml6 Questions
2
Solved
I have some XML:
<?xml version="1.0" ?>
<Project ToolsVersion="4.0">
<PropertyGroup Condition="'$(key)'=='1111'">
<Key>Value</Key>
</PropertyGroup>
</Proj...
Prolific asked 10/5, 2013 at 21:6
4
Solved
I have an instance of MSXML2.DomDocument.
I wave to save it, with indenting.
This code works, but does not indent:
var dom = new ActiveXObject("MSXML2.DomDocument");
// fiddle with dom here
d...
Crystallite asked 21/6, 2012 at 18:11
5
Solved
We have a number in XML that can go up to 3 digits in a large XML file that has to be converted to fixed length text for loading into another system.
I need to pad this with leading zeros to a len...
Corelation asked 4/9, 2014 at 9:41
4
Solved
Edit: My (incomplete and very rough) XmlLite header translation is available on GitHub
What is the best way to do a simple combine of massive XML documents in Delphi with MSXML without using DOM? ...
3
Solved
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 ...
Mallard asked 10/5, 2011 at 14:29
0
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, Empty...
2
Solved
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?
1
Solved
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 ...
3
Solved
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-004096325...
1
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 t...
3
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 i...
Tetanic asked 11/6, 2009 at 9:2
1
© 2022 - 2024 — McMap. All rights reserved.