Ask a Question related to ASP.NET Web Services, Design and Development.
-
Mat Kramer #1
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. I'm
using C# and and automatically generated Web Reference class (based on
SoapHttpClientProtocol). I override the GetWebResponse method, and I can
use HttpWebResponse.GetResponseStream to dump the content, and
HttpWebResponse.Headers to dump the headers. However, after I pass the
WebResponse on, the application hits an exception "Stream was not readable".
Is this becaue the stream can only be read once? Is there any way to
intercept the HTTP response (and request, if possible) without disturbing
the application?
Thanks
-Mat
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
[url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Mat Kramer Guest
-
HttpWebResponse
When using HttpResponse, I'm getting HTML entities in the returned value: For example: // the httpRequest has already been sent... -
HttpWebResponse GetResponse
I have an error below. is there any idea about it. Dim Req As HttpWebRequest =... -
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... -
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 ... -
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... -
Ostap Radkovskiy #2
Re: HttpWebResponse intercept raw HTTP?
I'm not sure about about that, but I think while reading the stream the
Position property of stream was changed pointing to the end, so may be you
should try to set Position=0 and give it a try
Ostap
"Mat Kramer" <mkramer at transomamedical> wrote in message
news:41dad97e$1_1@127.0.0.1...the> For diagnostic and learning purposes, I would like to intercept and logreadable".> raw HTTP headers and content from a HttpWebResponse in a webservice. I'm
> using C# and and automatically generated Web Reference class (based on
> SoapHttpClientProtocol). I override the GetWebResponse method, and I can
> use HttpWebResponse.GetResponseStream to dump the content, and
> HttpWebResponse.Headers to dump the headers. However, after I pass the
> WebResponse on, the application hits an exception "Stream was notNews==----> Is this becaue the stream can only be read once? Is there any way to
> intercept the HTTP response (and request, if possible) without disturbing
> the application?
>
> Thanks
>
> -Mat
>
>
>
>
> ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure UsenetNewsgroups> [url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000> ---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Ostap Radkovskiy Guest
-
Mat Kramer #3
Re: HttpWebResponse intercept raw HTTP?
Thanks for the reply. I thought the same thing and tried a Seek(0, Begin)
and Set_Position(0), but I get an exception that says that operation is not
supported.
-Mat
"Ostap Radkovskiy" <oradkov@softservecom.com> wrote in message
news:uJT9emo8EHA.3416@TK2MSFTNGP09.phx.gbl...> I'm not sure about about that, but I think while reading the stream the
> Position property of stream was changed pointing to the end, so may be you
> should try to set Position=0 and give it a try
>
> Ostap
>
> "Mat Kramer" <mkramer at transomamedical> wrote in message
> news:41dad97e$1_1@127.0.0.1...> the>> For diagnostic and learning purposes, I would like to intercept and log> readable".>> raw HTTP headers and content from a HttpWebResponse in a webservice. I'm
>> using C# and and automatically generated Web Reference class (based on
>> SoapHttpClientProtocol). I override the GetWebResponse method, and I can
>> use HttpWebResponse.GetResponseStream to dump the content, and
>> HttpWebResponse.Headers to dump the headers. However, after I pass the
>> WebResponse on, the application hits an exception "Stream was not> News==---->> Is this becaue the stream can only be read once? Is there any way to
>> intercept the HTTP response (and request, if possible) without disturbing
>> the application?
>>
>> Thanks
>>
>> -Mat
>>
>>
>>
>>
>> ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet> Newsgroups>> [url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000>>> ---= East/West-Coast Server Farms - Total Privacy via Encryption =---
>
----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
[url]http://www.newsfeeds.com[/url] The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Mat Kramer Guest



Reply With Quote

