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
1
vote
0 answers

How to parse DTD node structure with MSXML6

There are some stand-alone DTD files that I would like to parse in my Delphi application with MSXML6. The DTD file content looks similar to:
blerontin
  • 2,892
  • 5
  • 34
  • 60
1
vote
1 answer

MSXML6.dll Access Denied redirecting HTTP to HTTPS

I am using MSXML6 in a vbscript-like code to download data over HTTP. But the server now requires connections to upgrade to HTTPS. This is causing the xmlhttp object to fail with the error "msxml6.dll: Access is denied." Set http =…
Sam Sirry
  • 631
  • 5
  • 22
1
vote
1 answer

xpath how access nodes by position

I have such xml…
1
vote
2 answers

Getting the name of child node in xml returns #text c++

I am trying to retrieve the name of the child node tag in an xml document. My xml document looks something like this: someinfo1
Ajay Nair
  • 1,827
  • 3
  • 20
  • 33
1
vote
2 answers

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 unfortunately, we're not allowed to write this as a…
StevieG
  • 8,639
  • 23
  • 31
1
vote
0 answers

Where do I get the correct pdb for msxml6.dll (Symbol Server)

I am using Visual Studio 2013 to debug a crash in an app and the call stack shows msxml6.dll. I am running on Windows 7 64 bit. The app is a 64 bit app. I set up MS symbol server but it appears my msxml6.dll is not the same/doesn;t match the pdb I…
Tim
  • 20,184
  • 24
  • 117
  • 214
1
vote
1 answer

"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 exception when loading XML using the msxml unit in…
Jeroen Wiert Pluimers
  • 23,965
  • 9
  • 74
  • 154
1
vote
0 answers

VBA XMLHTTP60 request not showing all accents in hungarian

I am using Outlook (2010 + 2013) VBA using MS XML 6.0 reference to load up a web page. I am having trouble to get the page with Hungarian accented characters. I tried to manipulate the charset to no avail. Sub TEST() Dim url As String url =…
modzsi
  • 185
  • 2
  • 12
1
vote
0 answers

Posting Jsondata in VB using Visual Studio 2013 results in message : "invalid parameter"

Im calling PostJsontext with a valid url and a valid APIkey (Username). Posting the jsontext results in 'invalid parameter' message in the line : .send(Jsontext) Using the same routine with: .Open("GET", Xurlget, False, StrUsername, "") …
henktmu
  • 11
  • 2
1
vote
2 answers

Transforming 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): Text1 Text2 If the template for…
Dave
  • 378
  • 4
  • 14
1
vote
1 answer

MSXML ServerXMLHTTP- Calling web service

Problem: I am getting the following error output from If Err.Number <> 0 Then check; Err.Number :-1072954818 Err.Source :msxml6.dll Err.Source :This method cannot be called until the open method has been called. Code: dim objHttpRequest dim…
Ramakrishnan
  • 5,254
  • 9
  • 34
  • 41
1
vote
1 answer

declare public variable types based on OS

I am editing a VBA macro that has worked for Office 2003, 2007, 2010, 2013 etc, on any previous OS version of windows we've used. Now that we've upgraded to windows 10, this line of code: Private m_document As MSXML2.DOMDocument Doesn't work. It…
1
vote
2 answers

How do I extract text of a single HTML element by tag name using MSXML in VBA?

I'm trying to extract US Patent titles using MSXML6. On the full-text html view of a patent document on the USPTO website, the patent title appears as the first and only "font" element that is a child of "body". Here is my function that is not…
PatentWookiee
  • 187
  • 2
  • 17
1
vote
0 answers

Script does not work with MSXML 6.0 but work with version 3.0

I have a little VB script that works while using MSXML 3.0 but not 6.0. I have read that I should stay away from both 4.0 & 5.0. All the script does is find a node, display the inner text in a message box. Test script: Dim xmlResponseDocument '…
Black Frog
  • 11,595
  • 1
  • 35
  • 66
1
vote
1 answer

InfoPath cannot start Microsoft Visual Studio Tools for Application

when i hit alt+shift+F12 in InfoPath (which should open VSTA), i get the following error: Obviously no helpful information (thanks Microsoft. I have installed MSXML and .NET 2.0 as according to: source If your computer does have the Microsoft .NET…
philx_x
  • 1,708
  • 16
  • 23
1 2 3
8 9