Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Response Buffer Limit Exceeded

Reply
Thread Tools

Response Buffer Limit Exceeded

 
 
Steve Bywaters
Guest
Posts: n/a
 
      08-28-2004
I have the following error on a page ... I can fix it by making a large-ish
block of text (almostr 4k) a little smaller.
But what is ASP actually complaining about?

Steve



Response object error 'ASP 0251 : 80004005'

Response Buffer Limit Exceeded

/lsm/TemplateKb2.asp, line 0

Execution of the ASP page caused the Response Buffer to exceed its
configured limit.


 
Reply With Quote
 
 
 
 
Steve Bywaters
Guest
Posts: n/a
 
      08-28-2004
...and yes, the text is dynamicaly displayed, via asp.

So it all adds up???


 
Reply With Quote
 
 
 
 
Egbert Nierop \(MVP for IIS\)
Guest
Posts: n/a
 
      08-28-2004
"Steve Bywaters" <> wrote in message
news:...
> ..and yes, the text is dynamicaly displayed, via asp.
>
> So it all adds up???


a max of 4K?
I don't believe this.

Note An ASP application uses internal server buffers when writing data to
the client, irrespective of the value of Response.Buffer. As the application
is writing data synchronously, the data buffer can be reused when the
BinaryWrite function returns, while the server is writing the data
asynchronously to the client. The server, in turn, makes a copy of the data
into its internal buffers. As a result of this buffering, the ASP
application should not try to send unreasonable amounts of data in a single
BinaryWrite, but rather break it into fragments so as to avoid running out
of buffer space. Should the buffer space be exceeded, ASP error 251,
"response exceeds the buffer limit," will be returned. While the default
maximum buffer size is 4MB, the server administrator may increase it.

Using adsutil.vbs
you can ask what's the buffer at the moment

ADSUTIL GET W3SVC/1/Root/AspBufferingLimit

If the parameter is not set, it should default to 4MB. In that cause, your
script really generates 4MB which is not healthy

>


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Response Buffer Limit Exceeded Ron Hinds ASP General 3 12-10-2008 12:37 AM
Response Buffer Limit Exceeded Problems - Ideas Please! Brian Piotrowski ASP General 3 09-08-2004 12:17 PM
Response Buffer Limit Exceeded Help Needed Brian Piotrowski ASP .Net 0 08-27-2004 05:26 PM
can i modify the content in the buffer of response(not response.buffer prep) xingye ASP General 9 04-19-2004 03:49 AM
Response Buffer Limit Exceeded Omar ASP General 3 02-26-2004 05:53 PM



Advertisments
 



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