Re: Buffer flushing problem?

2005-06-12 Thread Charles Johnson
Well Ron, you may have seen my last post, where it states i can make the program fail in the way i mentioned earlier *without* the logging api, merely by running two copies of the program simultaneously, although the errors are rarer. The fact that they occur at all is significant though. Still tes

RE: ASP.NET Blocking Problem

2005-06-12 Thread Ron Grabowski
Did Nicko's suggestion resolve your issue Darren? I'm sure other people on the list are curious to know if you were able to increase your logging throughput. --- Darren Blackett <[EMAIL PROTECTED]> wrote: > Thanks very much. I'm going to give this a go. I really appreciate > everyone's help. >

Re: Buffer flushing problem?

2005-06-12 Thread Ron Grabowski
By simpler solution, I mean this 10 line snippet: HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.apache.org";); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream responseStream = response.GetResponseStream(); using (StreamReader streamReader = new St

Re: Buffer flushing problem?

2005-06-12 Thread Charles Johnson
FYI, taking out the log4net calls, i can't reproduce the phenomenon of the program failing to read the whole page. But - and this is interesting - if i start up 2 programs, then one of them will sometimes fail to read the whole page. CJ Ron Grabowski wrote: >What are you trying to do? It looks l

Re: Buffer flushing problem?

2005-06-12 Thread Charles Johnson
>> It looks like you're requesting a webpage then you want to iterate through each line in the file looking for information. >> That's correct (as the link describes) >>There's got to be a simpler solution than the one you came up with What's not simple about it? Perhaps you're referring to the