MSXML 4.0 .NET equivilents

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I was wondering if there are direct equivelents in .NET to the objects provided by MSXML 4.0 dll. For example I need to send and recieve XML documents from an asp page. The example I was given uses these objects.

MSXML2.FreeThreadedDOMDocumen
MSXML2.ServerXMLHTT

I know I can still used the MSXML 4.0 dll but I would like to do this strictly using .NET objects

Any help would be greatly appreciated

Thanks
Ken
 
see:

XmlDocument class. Its not free threaded, so you need to do your own
locking, but still mush faster than com-interops.

WebClient class


-- bruce (sqlwork.com)



Kent said:
I was wondering if there are direct equivelents in .NET to the objects
provided by MSXML 4.0 dll. For example I need to send and recieve XML
documents from an asp page. The example I was given uses these objects.
 
Back
Top