XMLHTTP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Q. John Chen

    XMLHTTP

    I am looking for XMLHTTP equivelent in C#. I need post simple data and
    get simple results back. The most important for me is to allow the
    client app to communicate AS LONG AS the web browser (or IE) can
    communicate. I don't want to set proxy because my app is distributed to
    unknonw users. I briefly looked at the HttpWebRequest but it seems that
    I have to setup the proxy.

    Any suggestion ?

    Thanks.

    John

  • Lebesgue

    #2
    Re: XMLHTTP

    You do not need to setup any proxy when using HttpWebRequest. You may want
    to have a look at WebClient class as well.

    "Q. John Chen" <qjchen@email.c om> wrote in message
    news:1115588218 .446939.263590@ z14g2000cwz.goo glegroups.com.. .[color=blue]
    > I am looking for XMLHTTP equivelent in C#. I need post simple data and
    > get simple results back. The most important for me is to allow the
    > client app to communicate AS LONG AS the web browser (or IE) can
    > communicate. I don't want to set proxy because my app is distributed to
    > unknonw users. I briefly looked at the HttpWebRequest but it seems that
    > I have to setup the proxy.
    >
    > Any suggestion ?
    >
    > Thanks.
    >
    > John
    >[/color]


    Comment

    Working...