Max length in page header refferer

1 Answer 98 Views
Ajax
Martin
Top achievements
Rank 1
Martin asked on 21 Sep 2021, 06:37 AM

Hi, I would like to ask, what is the maximum length of the parameter referer in page header for telerik controls.

Thanks

 

1 Answer, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 23 Sep 2021, 02:52 PM

Hello Martin,

The maximum length of the HTTP header is usually controlled by the server where the application is deployed (we cannot control it):

You can modify the MaxFieldLength and the MaxRequestBytes registry settings on the IIS server so the user's request headers are not considered too long. 

It could  be also affected by some Firewall settings as well, so you can try disabling it and see what the result will be.

In case you want to increate the allowed request size for the application as well, you can set the maxRequestLenght property in its web.config:

<configuration>
    <system.web>
        <httpRuntime maxRequestLength="2147483640"/>
    </system.web>


Regards,
Vessy
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
Ajax
Asked by
Martin
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Share this question
or