Hello, the following code does not work in C#:
First this namespace is imported:
using MSXML2;
Then inside a method these are the 1st 2 lines:
HttpContext.Cur rent.Response.B uffer = true;
XMLHTTP40 mxml = new XMLHTTP40();
here is the error msg caused by the 2nd line:
Retrieving the COM class factory for component with CLSID {88D969C5-F192-11D4-A65F-0040963251E5} failed due to the following error: 80040154
There is a COM reference to msxml3.dll in the project.
Thanks for any help.
First this namespace is imported:
using MSXML2;
Then inside a method these are the 1st 2 lines:
HttpContext.Cur rent.Response.B uffer = true;
XMLHTTP40 mxml = new XMLHTTP40();
here is the error msg caused by the 2nd line:
Retrieving the COM class factory for component with CLSID {88D969C5-F192-11D4-A65F-0040963251E5} failed due to the following error: 80040154
There is a COM reference to msxml3.dll in the project.
Thanks for any help.
Comment