Showing posts with label limitation. Show all posts
Showing posts with label limitation. Show all posts

Monday, March 12, 2012

Report Size Limitation

Has anyone had issues with deploying large reports to a report server? I am
trying to deploy a 4061 Kb ".rdl" file. I get the error "Maximum request
length exceeded."
Is there any way to increase the acceptable file size or is this a
limitation of the product?
Any advice would be most appreciated.
Thankyou :)In the c:\windows\microsoft.net\framework\v1.1.4322\config\machine.config,
you can increase the file size. Search for maxRequestLength.
--
This posting is provided "AS IS" with no warranties, and confers no rights
"Darren" <Darren@.discussions.microsoft.com> wrote in message
news:B5FD289D-C0B7-48D7-B3A3-C8D888BA3826@.microsoft.com...
> Has anyone had issues with deploying large reports to a report server? I
am
> trying to deploy a 4061 Kb ".rdl" file. I get the error "Maximum request
> length exceeded."
> Is there any way to increase the acceptable file size or is this a
> limitation of the product?
> Any advice would be most appreciated.
> Thankyou :)
>|||Hi Darren:
By default ASP.NET uploads are limited to 4MB. You can change this
limit in the server's machine.config file.
Details are here:
PRB: Cannot Upload Large Files When You Use the HtmlInputFile Server
Control
http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626
Hope this helps,
--
Scott
http://www.OdeToCode.com
On Tue, 10 Aug 2004 15:43:02 -0700, Darren
<Darren@.discussions.microsoft.com> wrote:
>Has anyone had issues with deploying large reports to a report server? I am
>trying to deploy a 4061 Kb ".rdl" file. I get the error "Maximum request
>length exceeded."
>Is there any way to increase the acceptable file size or is this a
>limitation of the product?
>Any advice would be most appreciated.
>Thankyou :)|||Thankyou Champion :)
That solved it...
"Brian Hartman [MSFT]" wrote:
> In the c:\windows\microsoft.net\framework\v1.1.4322\config\machine.config,
> you can increase the file size. Search for maxRequestLength.
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
> "Darren" <Darren@.discussions.microsoft.com> wrote in message
> news:B5FD289D-C0B7-48D7-B3A3-C8D888BA3826@.microsoft.com...
> > Has anyone had issues with deploying large reports to a report server? I
> am
> > trying to deploy a 4061 Kb ".rdl" file. I get the error "Maximum request
> > length exceeded."
> >
> > Is there any way to increase the acceptable file size or is this a
> > limitation of the product?
> >
> > Any advice would be most appreciated.
> >
> > Thankyou :)
> >
>
>|||Darren:
On the web server that you are deploying toâ?¦ The ReportServer application
(Reporting Services WebService App) web.config file must have the following
settingâ?¦.. <httpRuntime maxRequestLength="32768" />
This setting is within the system.web node of the web.config fileâ?¦without
this setting the maxRequestLength is set to 4096K by default..not enough for
long reports
Regards,
Dean Nero
Momentun Healthware Inc.
"Darren" wrote:
> Has anyone had issues with deploying large reports to a report server? I am
> trying to deploy a 4061 Kb ".rdl" file. I get the error "Maximum request
> length exceeded."
> Is there any way to increase the acceptable file size or is this a
> limitation of the product?
> Any advice would be most appreciated.
> Thankyou :)
>