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
2
votes
1 answer

xpath issue with selectSingleNode when switch to XML 6

This is my XML: When using DomDocument(ver 3) I could run the following(In VB6): Set objNode = objDom.documentElement.selectSingleNode("//.[@Index = '1']") This is to identify…
Doron
  • 21
  • 1
2
votes
3 answers

Xpath expression to retrieve oldest/earliest node

I have an XML snippet, so: Alabama AL Montgomery 4661900 52419 14 December…
gkrogers
  • 8,126
  • 3
  • 29
  • 36
2
votes
0 answers

DTD validation with SAX from MSXML 6 - Delphi XE5

The following code outputs "EOleException: error during the validation". It is this error: 0xC00CE225 XMLOM_VALIDATE_INVALID Validate failed. If I add the error handler the exact error message is "XML is neither valid nor invalid as no schema was…
kaboom
  • 612
  • 1
  • 8
  • 15
2
votes
0 answers

How to auto register msxml6.dll on Windows Server 2003?

I have a I have a component that loads the dll dependêcia Windows: msxml6 and msxml6r. When I run the installer on Windows Server 2003, it does not work because it does not find the dll msxml6 windows itself. As a workaround I thought of sending…
fymoribe
  • 199
  • 1
  • 11
2
votes
1 answer

paypal classic asp msxml error on windows server 2008

The following routine works fine from my Win 2003 server to send a pay request to Paypal. Set vXMLHttp = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0") vXMLHttp.setOption(3) = CERT_PATH strURL = KEYPOINT &"/AdaptivePayments/Pay" vXMLHttp.open…
2
votes
1 answer

Self closing XML tags in Access VBA using MSXML

I have been toying around with using Microsoft XML, v6.0 in Access VBA. My question is, is there anyway when writing VBA to create an XML output to have the output have self closing tags? Like in the following code, when the field is created it will…
2
votes
1 answer

IXSLTemplate (MSXML 6) - how to resolve xsl:import

I am using mxsml 6 via COM to execute a transform. The source stylesheet has an xs:import statement that I know how to include, but how can I tell MSXML to do that? I can't seem to find a place to tell the IXSLTemplate to load the resolved…
Grahame Grieve
  • 3,538
  • 3
  • 15
  • 17
2
votes
2 answers

MSXML4 versus MSXML6 XSLT Parsing Namespace Error

I saw a lot of posts online about MSXML4 to 6 or XSLT 1.0 versus 2.0 etc. But they could not answer my question. I have a XSLT transformation code that works with MSXML4 APIs (XSLTransform and FreeThreadedDomDocument) on IE7 via Javascript. Same…
WPF-it
  • 19,625
  • 8
  • 55
  • 71
2
votes
1 answer

Read URL from XML data

Using Delphi 2010 I want to read the URL's for Location, Smartcard_Location and Integrated_Location from the following XML sample data (I left out parts I don't need) using TXMLDocument:
Remko
  • 7,214
  • 2
  • 32
  • 52
1
vote
0 answers

Messy code while modifying the xml file with installscirpt

We want to modify the node of an xml file such as web.config and we get messy code after saving the file. The code we use is below: set xmlDocument = CoCreateObject("Msxml2.DOMDocument.4.0"); if (!IsObject(xmlDocument)) then return -1; …
1
vote
0 answers

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, EmptyParam, EmptyParam); …
Praveen A B
  • 61
  • 2
  • 4
1
vote
0 answers

Problem with MSXML6 classes and properties

I am using MSXML6 to validate some XML files against XSD schemas. According to this example and this documentation, the IXMLDomDocument has a property called schemas that is supposed to allow me to load an xsd file and associate it with my…
aprotiere
  • 35
  • 4
1
vote
1 answer

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?
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
1
vote
1 answer

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") xmlHttp.Open "GET", url, False,…
reggie
  • 13,313
  • 13
  • 41
  • 57
1
vote
1 answer

Classic ASP Security error with msxml2 80072f8f

I'm updating a legacy application to use a new payment REST service and I'm having trouble with a POST request. The code runs fine on a Windows 10 development machine but fails on Windows Server 2008 SP2: Set HttpReq =…
RikRak
  • 898
  • 1
  • 7
  • 21
1 2
3
8 9