Questions tagged [msxml4]

24 questions
0
votes
0 answers

MSXML 6 installation prerequisites

Good Day! Currently on one of our servers MSXML 4 is installed which is an obsolete version. Now we want to upgrade it to MSXML 6.0 SP2. However I could not get link from where I could install MSXML6_x64.msi installer I tried downloading it…
anonymous
  • 21
  • 7
0
votes
1 answer

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\"…
cbrulak
  • 15,436
  • 20
  • 61
  • 101
0
votes
0 answers

Using Visual C++/MSXML how do I convert XML from ISO-8859-1 to UTF-8?

I have a C++ XML document, document A, that is retrieved from a database and placed in MSXML 4 as DOM Document. The document is in ISO-8859-1 encoding, and it has non-ASCII characters, such as é (0xE9 in ISO-8859-1). Some of the document A nodes…
Niraj
  • 66
  • 4
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
2 answers

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 = NULL; long numOfChildNodes= 0; BSTR bstrItemText; HRESULT…
cbrulak
  • 15,436
  • 20
  • 61
  • 101
0
votes
2 answers

Asynchronous MSXML2 XMLHTTP Request in code behind

I want asynchronous HTTP call back to work in C# with MSXML2 APIs. I am calling this via a winform. x = new MSXML2.XMLHTTPClass(); x.open("POST", "http://localhost/MyHandler.ashx", true, null, null); x.send(""); …
WPF-it
  • 19,625
  • 8
  • 55
  • 71
0
votes
2 answers

MSXML.DOMDocument.4.0 loadXML with Chinese Unicode characters

Currently, I'm trying to use the MSXML loadXML method in ASP to load XML string which may contain Unicode Chinese characters like (U+20BA2) 4bytes and the xml string looks like City So, in my code, I could see the xml…
-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
-3
votes
1 answer

What is this "socket heading" (bytes,chars) before receiving the actual xml from an msxml service?

I'm using java jaxb to unmarshal xml request via socket, before the actual xml
Petter Friberg
  • 21,252
  • 9
  • 60
  • 109
1
2