Streaming in C # 2.0 IIS 5.1: localhost vs computer name

I am trying to create a web service that returns streaming data. For this I have created a demo webservice set HttpContext.Current.Response.BufferOutput = false and I am writing multiple jpeg files merging between them for the same answer.

On the client side I am doing loHttp = (HttpWebRequest) WebRequest.Create (Url); loWebResponse = (HttpWebResponse) loHttp.GetResponse ();

now if url is http: // localhost I get the information as I want. However, if the url is http: // [mycomputername] then I get buffering information and only when all jpegs only then I get a response. The only difference is how I access the computer.

What should I configure so I get the streaming experience also when accessing a remote computer? Thank!

+1


source to share


1 answer


Ok, I found the culprit.



I was running the fiddler in the background and it intercepted and buffered the response.

0


source







All Articles