I need post some simple form data and get some simple data back. I used
XMLHTTP in VB6 and works great. How can I do the same thing in .NET.

The most important thing for me is that I want to be able to
communicate AS LONG AS the browser (IE) can communicate. I do NOT want
set the proxy server because my app is distribute to unknown users.

Thanks

John

Re: XMLHTTP equivelent by Brock

Brock
Mon May 09 18:00:00 CDT 2005

System.Net.HttpWebRequest and HttpWebResponse.

-Brock
DevelopMentor
http://staff.develop.com/ballen



> I need post some simple form data and get some simple data back. I
> used XMLHTTP in VB6 and works great. How can I do the same thing in
> .NET.
>
> The most important thing for me is that I want to be able to
> communicate AS LONG AS the browser (IE) can communicate. I do NOT want
> set the proxy server because my app is distribute to unknown users.
>
> Thanks
>
> John
>




Re: XMLHTTP equivelent by Scott

Scott
Mon May 09 18:12:40 CDT 2005

What you want is the now formalized Web Service paradigm.


"Q. John Chen" <qjchen@email.com> wrote in message
news:1115673822.175304.195130@z14g2000cwz.googlegroups.com...
>I need post some simple form data and get some simple data back. I used
> XMLHTTP in VB6 and works great. How can I do the same thing in .NET.
>
> The most important thing for me is that I want to be able to
> communicate AS LONG AS the browser (IE) can communicate. I do NOT want
> set the proxy server because my app is distribute to unknown users.
>
> Thanks
>
> John
>



Re: XMLHTTP equivelent by Q

Q
Wed May 11 10:56:59 CDT 2005

HttpWebRequest will work for me. I thought that I have to set the Proxy
Server for HttpWebRequest to work.

Web Service uses alway use http SOAP header even I choose blank as soap
header. Some users' company block all unknow headers including this one
cause web service does not work at all. I have to use Http Turneling
to get message through for all users.

John