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 Memory Leak

I have to deal with a legacy application that uses MSXML to write measurement data to a simple XML file. Basicly, this is what's happening: MSXML2::IXMLDOMDocument2Ptr pXmlDocument; HRESULT comResult = CXMLUtil::createXMLDocument(pXmlDocument); //…
Matz
  • 583
  • 1
  • 6
  • 21
0
votes
1 answer

Problems in Memory Handling with MSXML

I've got an application for testing fabricated products using some legacy code in an dll. The application could be set up for different products. The setup is done via xml-files and can (and will) be changed during runtime, i.e. at End-Of-Lot. The…
Oliver
  • 596
  • 1
  • 7
  • 20
0
votes
1 answer

MSXML XSLT Parser Version

I have a C++ app that uses msxml6.dll to read XML files and apply XSLTs. I determined that MSXML v3.0 is being used for the XSLTs by including the following in one of my XSLT files:
user1712048
0
votes
1 answer

Message from webpage xmlLib Error / msxml3 & msxml6

At work some users are getting an xmlLib Error when trying to run a certain web based database. We used to get it when running Windows XP machines but was able to fix by replacing the later version of msxml3.dll with a newer version containing…
0
votes
1 answer

"Error: Automation server can't create object" for Msxml2.ServerXmlHttp in Windows Server 2008

I am getting this error: "Error: Automation server can't create object" when I tried to create an object of Msxml2.ServerXmlHttp using java script in Windows Server 2008. This error goes away if I make this IE setting change "Initialize and…
Venkatesh Laguduva
  • 13,448
  • 6
  • 33
  • 45
-1
votes
1 answer

How to Redistribute MSXML Library?

I plan to redistribute MSXML library with my program. Based on the online document at https://msdn.microsoft.com/en-us/data/cc507432(v=vs.80) and https://msdn.microsoft.com/en-us/data/cc507436(v=vs.80) , the latest version of MSXML is 6.0. However,…
alancc
  • 487
  • 2
  • 24
  • 68
-1
votes
1 answer

Is it possible to limit the file size of an XML in MSXML with VB6?

I there a possibility to limit the size of an XML upon creation in Vb6 using MSXML? For example I have to create a like 2GB XML file, but instead I want it to be split in 4 files of 500MB or 2 files of 1GB. Please let me know the right direction to…
zyberjock
  • 337
  • 5
  • 19
-1
votes
1 answer

Method to check function declared or not in .dll file

Is there any tool by the help I can find whether a function is declared in .dll file or not. Actually I am stuck in a problem where compiler is saying that it could not find the definition of xyz method. Please if anyone know how can I check this…
Mehraj Malik
  • 14,872
  • 15
  • 58
  • 85
-1
votes
1 answer

MSXML 6 is not listed in installed programs list of Windows 7

I can see msxml6.dll file in C:\Windows\System32 and C:\Windows\SysWOW64 folder but still this is not listed under Installed programs list. Can someone shed some light on this?
prawin
  • 413
  • 7
  • 16
-1
votes
2 answers

XPath not returning Node Value

Having a small issue here, I am working on a legacy Classic ASP application for a customer and have the need to pull data from an XML file but I cannot get the value of a single node, my code just returns nothing. I have and am able to pull all data…
OPSL
  • 131
  • 1
  • 11
-3
votes
1 answer

C++ read XML files in pieces

I'm doing an exercise with the MsXML6 library with Visual C++ in order to shake up my dependence on interpreter languages like python for analysing big files. I was following the tutorial on msdn, however when substituting the XML file for a much…
1 2 3
8
9