I have to confess, this is the first time I am using this technology, and therefore I do need a bit of 'spoon feeding'I have got the following references set-up
ADODB GAC 7.0.3300.0
Interop.MSXML BIN 2.0.0.0
Interop.MSXML2 BIN 2.6.0.0
Microsoft.Data.SqlXml GAC 9.0.242.0
Microsoft.SqlServer.msxml6_interop GAC 6.0.0.0
Microsoft.SqlServer.XML.Task GAC 9.0.242.0Postcodeanywhere.lookup WEBI am trying the following code to access a recordset
using
{
MSXML2.ServerXMLHTTP objHttp =
objHttp.open(
objHttp.send(
ADODB.
rst.Open(objHttp.responseStream,
}I am geeting the following errorCompiler Error Message: CS0234: The type or namespace name 'ServerXMLHTTP' does not exist in the namespace 'MSXML2' (are you missing an assembly reference?)Source Error:
Line 33: { Line 34: Line 35: MSXML2.ServerXMLHTTP objHttp = new MSXML2.ServerXMLHTTPClass(); Line 36: objHttp.open("GET", URL, false, "", ""); Line 37: objHttp.send(Type.Missing);