Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default HttpWebResponse

    When using HttpResponse, I'm getting HTML entities in the returned value:

    For example:
    // the httpRequest has already been sent
    HttpWebResponse httpResponse = null;
    httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    StreamReader sr = new StreamReader(httpResponse.GetResponseStream());

    Console.WriteLine(sr.ReadToEnd().ToString());

    The results (partial) are:

    <?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>

    The "<" and ">" are replaced with HTML markup. I'm sure there's a logical
    explanation that I'm overlooking, so has anyone have an explanation?


    --
    Message posted via DotNetMonster.com
    [url]http://www.dotnetmonster.com/Uwe/Forums.aspx/dotnet-webservices/200506/1[/url]
    Jonathan via DotNetMonster.com Guest

  2. Similar Questions and Discussions

    1. HttpWebResponse GetResponse
      I have an error below. is there any idea about it. Dim Req As HttpWebRequest =...
    2. HttpWebResponse intercept raw HTTP?
      For diagnostic and learning purposes, I would like to intercept and log the raw HTTP headers and content from a HttpWebResponse in a webservice. ...
    3. HttpWebRequest and HttpWebResponse
      Hi all: My old application used to POST xml to a remote server using HttpWebRequest from within an aspx page. The process worked like a charm...
    4. Problem using HttpWebRequest/HttpWebResponse with HTTPS
      Did you ever solve this problem? If so, please can you let me know how as I am trying to do something similar. richard.beacroft@warnerbros.com ...
    5. Session Cookie and HttpWebResponse
      Hi, I'm trying the following: - Imitate a Logon using a Post with HttpWebRequest on remote Webserver (asp 3.0 page using https) - On success...
  3. #2

    Default Re: HttpWebResponse

    HttpWebResponse does not do any content manipulation or escaping. If you are
    seeing escape characters, they were probably being sent by the server
    itself.

    --
    feroze

    -----------------
    This posting is provided as-is. It offers no warranties and assigns no
    rights.

    See [url]http://weblogs.asp.net/feroze_daud[/url] for System.Net related posts.
    ----------------

    "Jonathan via DotNetMonster.com" <forum@nospam.DotNetMonster.com> wrote in
    message news:4FD967C21C2F0@DotNetMonster.com...
    > When using HttpResponse, I'm getting HTML entities in the returned value:
    >
    > For example:
    > // the httpRequest has already been sent
    > HttpWebResponse httpResponse = null;
    > httpResponse = (HttpWebResponse)httpRequest.GetResponse();
    > StreamReader sr = new StreamReader(httpResponse.GetResponseStream());
    >
    > Console.WriteLine(sr.ReadToEnd().ToString());
    >
    > The results (partial) are:
    >
    > &lt;?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?&gt;
    >
    > The "<" and ">" are replaced with HTML markup. I'm sure there's a logical
    > explanation that I'm overlooking, so has anyone have an explanation?
    >
    >
    > --
    > Message posted via DotNetMonster.com
    > [url]http://www.dotnetmonster.com/Uwe/Forums.aspx/dotnet-webservices/200506/1[/url]

    Feroze [msft] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139