Data size too large in IIS

Data size too large in IIS

am 18.07.2007 23:34:01 von IT Manager

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

Re: Data size too large in IIS

am 19.07.2007 00:54:24 von reb01501

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+0107&rls=com.microsoft:en -us:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&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"

Re: Data size too large in IIS

am 19.07.2007 01:56:00 von itmanager

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+0107&rls=com.microsoft:en -us:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&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"
>
>
>

Re: Data size too large in IIS

am 19.07.2007 03:43:33 von reb01501

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+0107&rls=com.microsoft:en -us:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&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"

Re: Data size too large in IIS

am 20.07.2007 15:34:22 von Daniel Crichton

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+0107&rls=com.microsoft:en -us:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&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"
>>

Re: Data size too large in IIS

am 21.07.2007 02:30:01 von itmanager

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+0107&rls=com.microsoft:en -us:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&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"
> >>
>
>
>

Re: Data size too large in IIS

am 23.07.2007 12:18:26 von Daniel Crichton

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+0107&rls=com.microsoft:en -us:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&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"
>>>>