Hello,

Our servers were updated from 2k to 2k3 and in that process IIS updated to
6.0.
I am running ASP .NET 1.0 applications over it.

I got major problem with the post method. Big tables that are being uploaded
by client are not coming trough. Small tables work just fine. There is no
error messages to clien just blank site. I have tried to find out what could
result this with IIS 6.0, but haven't found any answer.

Tables are multi row multi column software debug data. So the size is quite
big, but post method should have no size limit?

Re: IIS change 5 -> 6 Post request problems by Daniel

Daniel
Mon Nov 27 02:44:09 CST 2006

K_L wrote on Sun, 26 Nov 2006 23:20:01 -0800:

> Hello,
>
> Our servers were updated from 2k to 2k3 and in that process IIS updated to
> 6.0.
> I am running ASP .NET 1.0 applications over it.
>
> I got major problem with the post method. Big tables that are being
> uploaded by client are not coming trough. Small tables work just fine.
> There is no error messages to clien just blank site. I have tried to find
> out what could result this with IIS 6.0, but haven't found any answer.
>
> Tables are multi row multi column software debug data. So the size is
> quite big, but post method should have no size limit?
>

Check the value of the AspMaxRequestEntityAllowed (or it's ASP.Net
equivalent if this isn't used by ASP.Net, I still only use ASP), by default
it is 204800 bytes (200K) in IIS6, you can increase it up to 1073741824
(1GB). That might be why you're having trouble.

Dan



Re: IIS change 5 -> 6 Post request problems by KL

KL
Tue Nov 28 01:50:01 CST 2006

>
> Check the value of the AspMaxRequestEntityAllowed (or it's ASP.Net
> equivalent if this isn't used by ASP.Net, I still only use ASP), by default
> it is 204800 bytes (200K) in IIS6, you can increase it up to 1073741824
> (1GB). That might be why you're having trouble.
>
> Dan
>
Yes thanks for the information. Some of the data acctually is over 500K in
size. But even after I allowed up to 1 MB the problem didn't go away. I
noticed that problem begins even with 10K log files. (Not uploading files put
pasted data from clipboard).
I also tried to configure MaxRequestEntityAllowed, but the same problem
continued.

Also if according to documents problems related to Request Entity return 403
error.