Questions tagged [msxml3]

30 questions
1
vote
0 answers

msxml3.dll error '80090326' from classic ASP script

I have a classic asp script which has worked for years but which has just started to throw an error (following a Microsoft update on the 27th August). The error is; msxml3.dll error '80090326' The message received was unexpected or badly…
aaronjelias
  • 131
  • 1
  • 2
  • 7
1
vote
1 answer

VBScript and Xpath excluding duplicates

I am trying to pull names from an XML Document using a vbscript. XML Document structure Name Name Name Name
Malachi
  • 3,205
  • 4
  • 29
  • 46
0
votes
0 answers

VB script has error "Security certificate required to access this resource is invalid" from msxml3.dll, and option 13056 not working

I am having this issue now, with code: set xmlhttp=CreateObject("Microsoft.XMLHTTP") xmlhttp.Open "Get" url, false, proxyUser, proxyPass xmlhttp.send Then I am having this error: "Security certificate required to access this resource is invalid"…
xymzh
  • 63
  • 5
0
votes
0 answers

Why setAttribute generate a Memory Leak when using IXMLDOMElementPtr

The function setAttribute of IXMLDOMElementPtr generate a memory leak CXmlDoc is my XML Wrapper class m_pXmlCur is a member of type MSXML2::IXMLDOMElementPtr I'm using #import "MSXML3.dll" named_guids Here my code : const int iSize =…
Alpha_33
  • 97
  • 8
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

How do I retrieve embedded XML values using MSXML in AutoItV3?

I am trying to use AutoItV3 to automate the insertion of some Entities into a piece of software. It will be far easier if my automation can read information from an xml file and use this to generate my entities, as I can then parse in different xml…
jasttim
  • 723
  • 8
  • 19
0
votes
1 answer

Getting the main list of nodes from xml document, using msxml lib in c++

I would like to go through the whole xml document that I have, without depending in the actual id value, node name or attributes. I use the msxml3 lib. I would like to get a list of the main nodes in the xml, that are descendants of the main…
Noam Ohana
  • 186
  • 14
0
votes
2 answers

Passing a variable number of parameters to Microsoft XSLT processor

In the database, the user has created a number of properties depending on his needs. An XML generated on the server-side includes all the properties from the database and the data they hold. The report generated, by Microsoft's XSLT processor,…
Sqandr
  • 75
  • 1
  • 7
0
votes
0 answers

Building Excel add-ins installer in Visual studio 2010 ( use of MSXML2 for Excel object)

I wrote an add-ins in Visual studio 2010 and I build an installer to deploy it on Excel 2010. Things used to work fine until I add a reference for Excel object (Interop.MSXML2). Since then, I am no longer able to deploy it. Excel always crash. any…
Brice Tb
  • 1
  • 1
0
votes
1 answer

Error on opening ASP website

We changed the server of our ASP website and in new setting browsing the website returns this error: msxml3.dll error '80072ee2' The operation timed out /error404.asp, line 41 This is lines that I think returns error: Set…
user288604
0
votes
0 answers

MSXML2.ServerXMLHTTP Dilemma

Writing a little C# console app (.Net 4.5) that uses the MSXML2.ServerXMLHTTP object to open a connection to a site and pull down a file. It works fine from home, but does not work from within our network here at work. I have a VB6 app and a WSF…
user360943
  • 109
  • 2
  • 9
0
votes
2 answers

msxml3.dll error '80072ee2' in ASP page - we are using a different Application Pool

There are lots of questions that ask about the 80072ee2 "The operation timed out" error in msxml3.dll, but most are resolved by moving the requested URL to a different application pool. But, we already do this and are still getting this error on a…
JezB
  • 528
  • 1
  • 10
  • 26
0
votes
1 answer

IServerXMLHTTPRequest on HTTPS

I am trying to implement a c++ application that will access an HTTPS server using IServerXMLHTTPRequest. My current code is: CComPtr xmlHttp; HRESULT hr = xmlHttp.CoCreateInstance(__uuidof(ServerXMLHTTP)); …
Ray
  • 627
  • 1
  • 7
  • 19
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…
1
2