473,386 Members | 1,674 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Data size too large in IIS

We are using Windows Server 2003 along with IIS 6.

When trying to browse to an ASP page, the following error is returned:
Active Server Pages error 'ASP 0107'
Data size too large.

Size of data being sent in the request is over the allowed limit.

The asp page in question is about 5 KB in size and we also increased the
size of the AspBufferingLImit setting in Metabase.xml to over 16MB to no
avail.

Similar ASP pages are all working, it is only this one, and there is nothing
special or different about this one.

Any ideas?

TIA

Jul 18 '07 #1
6 8173
IT Manager wrote:
We are using Windows Server 2003 along with IIS 6.

When trying to browse to an ASP page, the following error is returned:
Active Server Pages error 'ASP 0107'
Data size too large.

Size of data being sent in the request is over the allowed limit.

The asp page in question is about 5 KB in size and we also increased
the size of the AspBufferingLImit setting in Metabase.xml to over
16MB to no avail.

Similar ASP pages are all working, it is only this one, and there is
nothing special or different about this one.
This?
http://support.microsoft.com/kb/273482

http://www.google.com/search?q=ASP+0...e7&rlz=1I7GGLG

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 18 '07 #2
I have seen this article but does not apply to us. We are simply passing a
date and a small string value in the ASP page. There are no forms to speak of.

We have very similar ASP pages that work.

"Bob Barrows [MVP]" wrote:
IT Manager wrote:
We are using Windows Server 2003 along with IIS 6.

When trying to browse to an ASP page, the following error is returned:
Active Server Pages error 'ASP 0107'
Data size too large.

Size of data being sent in the request is over the allowed limit.

The asp page in question is about 5 KB in size and we also increased
the size of the AspBufferingLImit setting in Metabase.xml to over
16MB to no avail.

Similar ASP pages are all working, it is only this one, and there is
nothing special or different about this one.
This?
http://support.microsoft.com/kb/273482

http://www.google.com/search?q=ASP+0...e7&rlz=1I7GGLG

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '07 #3
Time to start debugging it, then. Start removing stuff, a little at a time,
until it no longer generates the error. That will tell you what part is
doing it.
IT Manager wrote:
I have seen this article but does not apply to us. We are simply
passing a
date and a small string value in the ASP page. There are no forms to
speak of.

We have very similar ASP pages that work.

"Bob Barrows [MVP]" wrote:
>IT Manager wrote:
>>We are using Windows Server 2003 along with IIS 6.

When trying to browse to an ASP page, the following error is
returned:
Active Server Pages error 'ASP 0107'
Data size too large.

Size of data being sent in the request is over the allowed limit.

The asp page in question is about 5 KB in size and we also increased
the size of the AspBufferingLImit setting in Metabase.xml to over
16MB to no avail.

Similar ASP pages are all working, it is only this one, and there is
nothing special or different about this one.
This?
http://support.microsoft.com/kb/273482

http://www.google.com/search?q=ASP+0...e7&rlz=1I7GGLG

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so
I
don't check it very often. If you must reply off-line, then remove
the "NO SPAM"
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jul 19 '07 #4
What does the page do?

The only time I ever see this error is during development where I do
something really silly like forget to put a MoveNext into a loop that
processed a recordset and outputs data, so the same record is processed over
and over until IIS can't cope with the amount of data in the response any
more.

Dan

IT wrote on Wed, 18 Jul 2007 16:56:00 -0700:
I have seen this article but does not apply to us. We are simply passing
a date and a small string value in the ASP page. There are no forms to
speak of.

We have very similar ASP pages that work.

"Bob Barrows [MVP]" wrote:
>IT Manager wrote:
>>We are using Windows Server 2003 along with IIS 6.

When trying to browse to an ASP page, the following error is returned:

Active Server Pages error 'ASP 0107'
Data size too large.

Size of data being sent in the request is over the allowed limit.

The asp page in question is about 5 KB in size and we also increased
the size of the AspBufferingLImit setting in Metabase.xml to over
16MB to no avail.

Similar ASP pages are all working, it is only this one, and there is
nothing special or different about this one.
This?
http://support.microsoft.com/kb/273482

http://www.google.com/search?q=ASP+0...e7&rlz=1I7GGLG

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 20 '07 #5
It opens a Crystal report using Server.CreateObject.

We figured out the problem. The report contained a function that was over
3000 lines long - that was the obstacle.

Why IIS would throw this error is beyond me. The ASP page itself is no more
than 5 KB in size - why should IIS care what's inside the Crystal report?
"Daniel Crichton" wrote:
What does the page do?

The only time I ever see this error is during development where I do
something really silly like forget to put a MoveNext into a loop that
processed a recordset and outputs data, so the same record is processed over
and over until IIS can't cope with the amount of data in the response any
more.

Dan

IT wrote on Wed, 18 Jul 2007 16:56:00 -0700:
I have seen this article but does not apply to us. We are simply passing
a date and a small string value in the ASP page. There are no forms to
speak of.

We have very similar ASP pages that work.

"Bob Barrows [MVP]" wrote:
IT Manager wrote:
We are using Windows Server 2003 along with IIS 6.

When trying to browse to an ASP page, the following error is returned:

Active Server Pages error 'ASP 0107'
Data size too large.

Size of data being sent in the request is over the allowed limit.

The asp page in question is about 5 KB in size and we also increased
the size of the AspBufferingLImit setting in Metabase.xml to over
16MB to no avail.

Similar ASP pages are all working, it is only this one, and there is
nothing special or different about this one.

This?
http://support.microsoft.com/kb/273482

http://www.google.com/search?q=ASP+0...e7&rlz=1I7GGLG

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Jul 21 '07 #6
Possibly an error was being thrown which was then sending the content of the
function, hence overloading the response buffer.

Dan

IT wrote on Fri, 20 Jul 2007 17:30:01 -0700:
It opens a Crystal report using Server.CreateObject.

We figured out the problem. The report contained a function that was over
3000 lines long - that was the obstacle.

Why IIS would throw this error is beyond me. The ASP page itself is no
more than 5 KB in size - why should IIS care what's inside the Crystal
report?

"Daniel Crichton" wrote:
>What does the page do?

The only time I ever see this error is during development where I do
something really silly like forget to put a MoveNext into a loop that
processed a recordset and outputs data, so the same record is processed
over and over until IIS can't cope with the amount of data in the
response any more.

Dan

IT wrote on Wed, 18 Jul 2007 16:56:00 -0700:
>> I have seen this article but does not apply to us. We are simply
passing a date and a small string value in the ASP page. There are no
forms to speak of.

We have very similar ASP pages that work.

"Bob Barrows [MVP]" wrote:

IT Manager wrote:
We are using Windows Server 2003 along with IIS 6.
>
When trying to browse to an ASP page, the following error is returned:
>
Active Server Pages error 'ASP 0107'
Data size too large.
>
Size of data being sent in the request is over the allowed limit.
>
The asp page in question is about 5 KB in size and we also increased
the size of the AspBufferingLImit setting in Metabase.xml to over
16MB to no avail.
>
Similar ASP pages are all working, it is only this one, and there is
nothing special or different about this one.
>
This?
http://support.microsoft.com/kb/273482

http://www.google.com/search?q=ASP+0...e7&rlz=1I7GGLG

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Jul 23 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Jeffrey Sheldon via SQLMonster.com | last post by:
Just wanted to know what is a general rule of thumb when determining log file space against a database's data file. We allow our data file for our database to grow 10%, unlimited. We do not allow...
7
by: dan graziano | last post by:
I have a very large data set where I have to do considerable regrouping of values and would like to know how you would suggest doing the following regrouping? The structure of the data set is...
14
by: John J. Hughes II | last post by:
Using the below code I am send multiple sterilized object across an IP port. This works fine if only one object is received at a time but with packing sometimes there is more then one object or...
2
by: yxq | last post by:
Hello I want to get Windows clipboard data size, seem to use the function "GetClipboardDataSize". Could anyone please tell how to do using vb.net? Thanks
1
by: stabbert | last post by:
We are on DB2 UDB 8.2.2 on AIX. I know this question has been asked many times on the ng but I am just not finding a real good answer. I need to be able to not only determine existing table data...
10
by: Sonnich | last post by:
Hi all! I am (still) running some tests (dispite my problems), and I'd like to know the size of data I have in order to calculate growth. As a test I added some data, 1.69 Gb to be exact to a...
0
by: srvaspreddy | last post by:
Hi Friends, What are the ways we have to compare data size in DCLGEN and DB2 catalogues?.
2
by: Dave Strydom | last post by:
Hi, I'm getting the following error in my event log: ============ Event Type: Error Event Source: Active Server Pages Event Category: None Event ID: 5 Date: 2007/03/09 Time: 11:50:48 AM
2
by: khalidanwar123 | last post by:
i am getting the following error while updating a clob field. ERROR java.sql.SQLException: Data size bigger than max size forthis type: 4003 19:28:27,499 ERROR at...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.