a newbie question

  • Thread starter Thread starter Ron Harter
  • Start date Start date
R

Ron Harter

Please forgive the question if the answer seems obvious, but I am new to
..Net and not having a fun time with it. I have built an XML DOM document
(XmlDocument) using the appropriate classes from the framework. Now I want
to send it to an exchange server, how do I do this? with VC++ 6.0 we use
MSXML to send it out and receive a reply.

How do I do this in .Net, the application is written in VC++ (managed).
 
Ron,
Please forgive the question if the answer seems obvious, but I am new to
.Net and not having a fun time with it. I have built an XML DOM document
(XmlDocument) using the appropriate classes from the framework. Now I want
to send it to an exchange server, how do I do this? with VC++ 6.0 we use
MSXML to send it out and receive a reply.

How do I do this in .Net, the application is written in VC++ (managed).

You can use the HttpWebRequest from the .NET framework to do this...
 
Back
Top