重放脚本时加载运行器抛出 406 错误
Load runner throwing 406 Error while replaying script
重播脚本时出现以下错误消息:
Error -26625: HTTP Status-Code=406 (Not Acceptable) for "https://example.com" [MsgId: MERR-26625]
406 - Client browser does not accept the MIME type of the requested
page.
The page you are looking for cannot be opened by your browser because
it has a file name extension that your browser does not accept.
在下面的调用中出现这个错误
web_custom_request("bootstrap",
"URL=https://<Domain Information>",
"Method=POST",
"Resource=0",
"RecContentType=application/json",
"Referer=https://<Domain Information>",
"Mode=HTTP",
"EncType=application/json;
能否请你建议我如何克服这个错误。
您是否考虑过您的请求中可能缺少 header?还有一种可能性,cookie 管理不善 - 如果您需要未处理的 header 中的 cookie 值,这也可能与 header 相关。
我 运行 也参与其中,在查看快照查看器时,在回放中,我可以看到一个错误与我发布的值相关,并且它必须是唯一的。我在正文中添加了一个时间戳,它解决了这个问题。
从:
"Body={"fileMapID":{FILEMAPID},"matchers":["Activate_MapName}"]}",
到:
"Body={"fileMapID":{FILEMAPID},"matchers":["Activate_MapName_{TS}"]}",
重播脚本时出现以下错误消息:
Error -26625: HTTP Status-Code=406 (Not Acceptable) for "https://example.com" [MsgId: MERR-26625]
406 - Client browser does not accept the MIME type of the requested page.
The page you are looking for cannot be opened by your browser because it has a file name extension that your browser does not accept.
在下面的调用中出现这个错误
web_custom_request("bootstrap",
"URL=https://<Domain Information>",
"Method=POST",
"Resource=0",
"RecContentType=application/json",
"Referer=https://<Domain Information>",
"Mode=HTTP",
"EncType=application/json;
能否请你建议我如何克服这个错误。
您是否考虑过您的请求中可能缺少 header?还有一种可能性,cookie 管理不善 - 如果您需要未处理的 header 中的 cookie 值,这也可能与 header 相关。
我 运行 也参与其中,在查看快照查看器时,在回放中,我可以看到一个错误与我发布的值相关,并且它必须是唯一的。我在正文中添加了一个时间戳,它解决了这个问题。 从: "Body={"fileMapID":{FILEMAPID},"matchers":["Activate_MapName}"]}", 到: "Body={"fileMapID":{FILEMAPID},"matchers":["Activate_MapName_{TS}"]}",