Qlik Sense HTTP Header size restriction

这篇具有很好参考价值的文章主要介绍了Qlik Sense HTTP Header size restriction。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

SAML authentication fails with the following error:

HTTP Error 400. The size of the request headers is too long.

The entire return code looks as such:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> 
<HTML><HEAD><TITLE>Bad Request</TITLE> 
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD> 
<BODY><h2>Bad Request - Request Too Long</h2> 
<hr><p>HTTP Error 400. The size of the request headers is too long.</p> 
</BODY></HTML> 

 

Environment:

Qlik Sense Enterprise on Windows  any version

 

Resolution:

Windows and Qlik Sense have a limitation on HTTP Header sizes.

The maximum header length is 16 KB.

Steps to be applied on the Qlik Sense Server:

  1. Open the Windows Registry Editor with Administrative Permissions.
  2. Create (or locate and change) the following keys and configure them with the desired value: 

    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters\MaxFieldLength (64 - 65534 (64k - 2) bytes)

    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters\MaxRequestBytes (256 - 16777216 (16MB) bytes)
     
  3. Restart the Server
  4. Open the Qlik Sense Management Console
  5. Open the Proxy used and navigate to the Settings of the Proxy
  6. In the Advanced section, input the desired Max header size (bytes)

 

The HTTP header length can be up to 64kb.

We recommend that you investigate the impact on other programs on the machine, as changing these settings is a system-wide change.

 

For more information, see Add Session on Qlik Sense for developers. 文章来源地址https://www.toymoban.com/news/detail-496156.html

到了这里,关于Qlik Sense HTTP Header size restriction的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Upgrading the Qlik Sense Repository Database from 9.6 to 12/13/14

     Upgrading Qlik Sense Repository Database using the Qlik PostgreSQL Installer In this article, we walk you through the requirements and process of how to upgrade an existing Qlik Sense Repository Database (see supported scenarios) as well as how to install a brand new Repository based on PostgreSQL. We will use the  Qlik PostgreSQL Installer  (QPI). For

    2024年02月09日
    浏览(80)
  • How to configure Qlik Sense to use a dedicated PostgreSQL database

    The Qlik Sense Repository Database (QSR) can be moved to a dedicated standalone PostgreSQL instance not hosted on the same machine as other Qlik Sense Services. It is also possible to move an already existing QSR from a local Sense install, to a dedicated PostgresSQL database. Content: Set up a postgresSQL database Simplified checklist of steps: Moving the Q

    2024年02月07日
    浏览(38)
  • HTTP Header 参数详解

    关于HTTP消息头 HTTP消息头是在,客户端请求(Request)或服务器响应(Response)时传递的,位请求或响应的第一行,HTTP消息体(请求或响应的内容)是其后传输。HTTP消息头,以明文的字符串格式传送,是以冒号分隔的键/值对,如:Accept-Charset: utf-8,每一个消息头最后以回车符

    2024年04月23日
    浏览(30)
  • http请求头部(header)详解

    通常HTTP消息包括客户机向服务器的请求消息和服务器向客户机的响应消息。这两种类型的消息由一个起始行,一个或者多个头域,一个只是头域结束的空行和可 选的消息体组成。HTTP的头域包括通用头,请求头,响应头和实体头四个部分。每个头域由一个域名,冒号(:)和域

    2024年02月12日
    浏览(42)
  • piakchu-‘http header’注入

    http消息头 是指,在超文本传输协议( Hypertext Transfer Protocol ,HTTP)的请求和响应消息中,协议头部分的那些组件。 http header 头信息可以获取客户端的一些信息,比如useragent、accept等字段,而且http消息头支持自定义。 首先打开pikachu靶机, 我们先根据提示使用admin 123456 来登

    2023年04月11日
    浏览(29)
  • 【JavaEE】_HTTP请求报头header

    目录 1. Host 2. Content-Length与Content-Type 2.1 Content-Length 2.2 Content-Type 3. User-Agent(UA) 4. Referer 5. Cookie header的整体格式是“键值对”结构,一行是一个键值对,这些键值对都是HTTP定义好的、有特殊含义的。 常见的报头种类有: Host表示访问的服务器主机的地址与端口号(端口号可

    2024年02月20日
    浏览(44)
  • http请求header传中文怎么处理

    解决思路: 首先:header里传不了中文,传输以后会报错。 先将该中文进行一个编码处理,放到header的参数里,最后在代码里进行 该参数的解码。 1:对header的传参进行加码 2:将加码的参数当成请求的header请求后台 3:后台对该参数进行解码 4:返回前台,查看校验

    2024年02月15日
    浏览(43)
  • http.header.Set()与Add()区别;

    在Go语言中进行HTTP请求时, http.Header 对象表示HTTP请求或响应的头部信息。 http.Header 是一个 map[string][]string 类型的结构,用于存储键值对,其中键表示HTTP头字段的名称,值是一个字符串切片,可以存储多个相同名称的头字段值。 http.Header 提供了两个主要的方法来设置头部字

    2024年02月07日
    浏览(38)
  • HTTP API 认证技术详解(三):JWT Authentication

    目录 什么是 JWT Authentication 认证 JWT 的组成部分 JWT 的工作流程 使用 Golang 实现 JWT  Authentication 认证 安全注意事项 JWT Authentication 认证的优缺点 小结 HTTP API 认证技术主要用于验证客户端身份,并确保只有经过授权的实体才能访问受保护的资源。随着安全需求的日益增长,AP

    2024年01月23日
    浏览(39)
  • HTTP API 认证技术详解(四):HMAC Authentication

    目录 什么是 HMAC Authentication 认证 HMAC Authentication 原理 HMAC Authentication 认证的步骤 使用 Golang 实现 HMAC Authentication 认证 HMAC Authentication 认证的安全性 HMAC 认证的最佳实践 小结 HTTP API 认证技术主要用于验证客户端身份,并确保只有经过授权的实体才能访问受保护的资源。随着安

    2024年01月18日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包