Questions tagged [msxml3]

30 questions
14
votes
4 answers

msxml3.dll Access Denied

I have the following code: Function filejson(json) Dim objStream, strData Set objStream = CreateObject("ADODB.Stream") objStream.CharSet = "utf-8" objStream.Open objStream.LoadFromFile(json) strData = objStream.ReadText() …
Devian
  • 817
  • 1
  • 12
  • 22
7
votes
2 answers

How to get MSXML IXMLHTTPRequest to handle HTTP redirects?

Situation: 1) I need to make HTTP[S] networking calls in C++ on Windows for our DLL. 2) Need to support at least XP (I guess SP3 is ok) 3) no ATL, no MFC, no IE Question: I recently switched from Boost cpp-netlib to using MSXML's IXMLHTTPRequest…
ryanb
  • 159
  • 10
6
votes
3 answers

Error C2011: 'MSXML2::IXMLDOMImplementation' : 'struct' type redefinition

I am changing my C++ project, which was earlier in VC6 and now being migrated to VS 2008, to use MSXML 6 instead of the earlier MSXML 3. When the code was in VC6 we were using MSXML3 by importing it # import "msxml3.dll" This was replaced with #…
bobbyalex
  • 2,681
  • 3
  • 30
  • 51
5
votes
1 answer

server giving msxml3.dll error '80072f7d' when trying to access secure url

For years I have used classic asp to connect to the secure site of a supplier using msxml3.dll - but since this morning, I am getting; msxml3.dll error '80072f7d' An error occurred in the secure channel support I have had a good look around and…
aaronjelias
  • 131
  • 1
  • 2
  • 7
3
votes
2 answers

Why does parsing XML document using MSXML v3.0 work, but MSXML v6.0 doesn't

So, I am working on a project that scrapes and collects data from many different sources around the internet with many different methods depending on each source's characteristics. The most recent addition is a web API call which returns the…
Stavros Jon
  • 1,695
  • 2
  • 7
  • 17
3
votes
1 answer

What goes on under the hood when the user chooses "Repair" on their .NET installation?

In particular, we've created an .msi installer that installs assemblies to the GAC, and has a built-in DoRegisterTypeLib operation on msxml3.dll. However (and somehow), the bad msxml3.dll version (8.70.1104.0, which Microsoft knows about) still…
branrigg
  • 31
  • 2
3
votes
3 answers

server is giving me the following error msxml3.dll

I'm using classic ASP and Server.XMLHTTP. My code has been working for years and all of a sudden today, across different servers, i get this error: msxml3.dll error 80072f7d All the multiple servers are all calling the same server that's called the…
Damien
  • 4,093
  • 9
  • 39
  • 52
2
votes
1 answer

Is there a maximum length for XPath Queries in MSXML?

I'm planning to do a relatively large XPath query using msxml. Is there a maximum length for a query that msxml enforces? Background: From some external input my code will create a number of xpath-queries and I am interested in the result of all…
froh42
  • 5,190
  • 6
  • 30
  • 42
2
votes
1 answer

Msxml3 - Memory leak

I plan to write an application (win32 platform) for parsing the xml documents. For parsing the xml's, i plan to use the msxml3.dll (microsoft latest service pack library) but many forum described that this has an huge memory leak issue. Is this…
Santhosh77
  • 73
  • 9
1
vote
0 answers

classic asp : MSXML3 dll ServerXMLHTTP

I am using below code Set objXML = Server.CreateObject("MSXML3.ServerXMLHTTP") objXML.Open "GET", sendstring, false objXML.Send() Its giving error on objXML.Send on localhost environment I dont see any problem in this code but could not able to…
user2745580
  • 123
  • 7
1
vote
1 answer

Will a 64 bit application support MSXML 3.0?

We are planning to convert the 32bit application to support 64 bit OS. Currently the application uses MSXML 3.0 in Javascripts. I want to know whether it will work as it is in a 64 bit os or will there be any issues.
Suhumar
  • 355
  • 3
  • 13
1
vote
0 answers

msxml3.dll error '800c0005' Classic ASP Error

I am getting following error in Classic ASP msxml3.dll error '800c0005' System error: -2146697211. This can be server issue with MSXML ? i am on windows 2003 server
user580950
  • 3,558
  • 12
  • 49
  • 94
1
vote
1 answer

Does windows7 and vista come with preinstalled msxml3.dll

Do windows 7 and windows vista come with preinstalled msxml3.dll or should i use the newer versions? If so will msxml6 work on windows xp and win2k without installing any additional files? Thanks :)
Miha
  • 13
  • 2
1
vote
1 answer

Any known issues with msxml3.dll on Windows 2003?

I'm trying to migrate a VB6 business object, which uses RDS to be accessed, from a Windows 2000 to a Windows 2003 server environment. I've made no changes to the app, nor the calling app, but I am getting an error code 440 Automation Error when the…
Cyberherbalist
  • 12,061
  • 17
  • 83
  • 121
1
vote
0 answers

Memory/Handle Leak with MSXML/C++ 32bit Windows Serverice on Windows Server 2012 R2 64 bit

We have a 32 bit legacy multi-threaded C++ Windows Service that uses Msxml2.ServerXMLHTTP.3.0 instance to send a message to one or more remote computer/host/endpoint. We recently migrated this service from a Windows 2008 Standard (32bit) OS to a…
1
2